File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
steps :
7
7
- name : checkout
8
- uses : actions/checkout@v2
8
+ uses : actions/checkout@v4
9
9
10
10
- name : test
11
11
run : make docker-test
20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- name : checkout
23
- uses : actions/checkout@v2
23
+ uses : actions/checkout@v4
24
24
25
25
- name : test
26
26
working-directory : ./scripts
@@ -34,13 +34,13 @@ jobs:
34
34
if : startsWith(github.ref, 'refs/tags/v')
35
35
steps :
36
36
- name : checkout
37
- uses : actions/checkout@v2
37
+ uses : actions/checkout@v4
38
38
with :
39
39
fetch-depth : 0 # https://github.com/goreleaser/goreleaser-action/issues/56
40
40
41
- - uses : docker/setup-qemu-action@v2
42
- - uses : docker/setup-buildx-action@v2
43
-
41
+ - uses : docker/setup-qemu-action@v3
42
+ - uses : docker/setup-buildx-action@v3
43
+
44
44
- name : goreleaser
45
45
run : |
46
46
echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin
Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ docker-acceptance: build-bats
32
32
docker run --network none -t bats -p acceptance-nonetwork.bats
33
33
34
34
goreleaser-build-static :
35
- docker run -t -e GOOS=linux -e GOARCH=amd64 -v $$ PWD:/go/src/github.com/yannh/kubeconform -w /go/src/github.com/yannh/kubeconform goreleaser/goreleaser:v1.21.2 build --single-target --skip-post-hooks --rm-dist --snapshot
35
+ docker run -t -e GOOS=linux -e GOARCH=amd64 -v $$ PWD:/go/src/github.com/yannh/kubeconform -w /go/src/github.com/yannh/kubeconform goreleaser/goreleaser:v1.22.1 build --single-target --skip-post-hooks --rm-dist --snapshot
36
36
cp dist/kubeconform_linux_amd64_v1/kubeconform bin/
37
37
38
38
release :
39
- docker run -e GITHUB_TOKEN -e GIT_OWNER -t -v /var/run/docker.sock:/var/run/docker.sock -v $$ PWD:/go/src/github.com/yannh/kubeconform -w /go/src/github.com/yannh/kubeconform goreleaser/goreleaser:v1.21.2 release --rm-dist
39
+ docker run -e GITHUB_TOKEN -e GIT_OWNER -t -v /var/run/docker.sock:/var/run/docker.sock -v $$ PWD:/go/src/github.com/yannh/kubeconform -w /go/src/github.com/yannh/kubeconform goreleaser/goreleaser:v1.22.1 release --rm-dist
40
40
41
41
update-deps :
42
42
go get -u ./...
You can’t perform that action at this time.
0 commit comments