Skip to content

Commit 673548b

Browse files
authored
Remove vendoring (hashicorp#272)
1 parent 5b869e5 commit 673548b

File tree

875 files changed

+14
-312294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

875 files changed

+14
-312294
lines changed

.github/workflows/ci.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
branches:
99
- master
1010

11+
env:
12+
GOPROXY: https://proxy.golang.org/
13+
1114
jobs:
1215
build:
1316
runs-on: ubuntu-18.04
@@ -26,7 +29,9 @@ jobs:
2629
echo "::set-output name=content::$content"
2730
-
2831
name: Set up Go
29-
uses: actions/setup-go@v1
32+
uses: actions/setup-go@v2
33+
env:
34+
GOPROXY: https://proxy.golang.org/
3035
with:
3136
# TODO: Replace with go-version-from-file when it is supported
3237
# https://github.com/actions/setup-go/pull/62
@@ -69,11 +74,14 @@ jobs:
6974
echo "::set-output name=content::$content"
7075
-
7176
name: Set up Go
72-
uses: actions/setup-go@v1
77+
uses: actions/setup-go@v2
7378
with:
7479
# TODO: Replace with go-version-from-file when it is supported
7580
# https://github.com/actions/setup-go/pull/62
7681
go-version: ${{ steps.go-version-unix.outputs.content || steps.go-version-win.outputs.content }}
82+
-
83+
name: Go mod download
84+
run: go mod download -x
7785
-
7886
name: Go mod verify
7987
run: go mod verify

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
tags:
66
- 'v[0-9]+.[0-9]+.[0-9]+*'
77

8+
env:
9+
GOPROXY: https://proxy.golang.org/
10+
811
jobs:
912
release:
1013
runs-on: ubuntu-latest
@@ -23,7 +26,7 @@ jobs:
2326
echo "::set-output name=content::$content"
2427
-
2528
name: Set up Go
26-
uses: actions/setup-go@v1
29+
uses: actions/setup-go@v2
2730
with:
2831
# TODO: Replace with go-version-from-file when it is supported
2932
# https://github.com/actions/setup-go/pull/62

Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
export GOFLAGS = -mod=vendor
2-
31
default: test
42

53
fmt:

vendor/bitbucket.org/creachadair/stringset/LICENSE

-27
This file was deleted.

vendor/bitbucket.org/creachadair/stringset/README.md

-25
This file was deleted.

vendor/bitbucket.org/creachadair/stringset/bitbucket-pipelines.yml

-26
This file was deleted.

vendor/bitbucket.org/creachadair/stringset/go.mod

-8
This file was deleted.

vendor/bitbucket.org/creachadair/stringset/go.sum

-4
This file was deleted.

0 commit comments

Comments
 (0)