File tree Expand file tree Collapse file tree 3 files changed +11
-18
lines changed
Expand file tree Collapse file tree 3 files changed +11
-18
lines changed Original file line number Diff line number Diff line change @@ -3,43 +3,36 @@ name: goreleaser
33on :
44 push :
55 tags :
6- - ' * '
6+ - " * "
77
88jobs :
99 goreleaser :
1010 runs-on : ubuntu-latest
1111 steps :
12- -
13- name : Set up Go
12+ - name : Set up Go
1413 uses : actions/setup-go@v6
1514 with :
16- go-version : ' 1.23 '
15+ go-version : " 1.24 "
1716 id : go
1817
1918 # Needed to build multi-platform Docker images
20- -
21- name : Set up QEMU
19+ - name : Set up QEMU
2220 uses : docker/setup-qemu-action@v3
23- -
24- name : Set up Docker Buildx
21+ - name : Set up Docker Buildx
2522 uses : docker/setup-buildx-action@v3
2623
27- -
28- name : Checkout
24+ - name : Checkout
2925 uses : actions/checkout@v5
30- -
31- name : Unshallow
26+ - name : Unshallow
3227 run : git fetch --prune --unshallow
33- -
34- name : Docker Login
28+ - name : Docker Login
3529 if : success() && startsWith(github.ref, 'refs/tags/v')
3630 env :
3731 DOCKERHUB_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
3832 DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
3933 run : |
4034 echo "${DOCKERHUB_TOKEN}" | docker login --username "${DOCKERHUB_USERNAME}" --password-stdin
41- -
42- name : Run GoReleaser
35+ - name : Run GoReleaser
4336 uses : goreleaser/goreleaser-action@v6
4437 with :
4538 version : v2.10.2
Original file line number Diff line number Diff line change 77 - uses : actions/checkout@v5
88 - uses : actions/setup-go@v6
99 with :
10- go-version : ' 1.23 '
10+ go-version : " 1.24 "
1111 - run : go test -race ./...
Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ require (
2424 golang.org/x/text v0.23.0 // indirect
2525)
2626
27- go 1.23 .0
27+ go 1.24 .0
You can’t perform that action at this time.
0 commit comments