Skip to content

Commit 8206b61

Browse files
Upgrade Release workflow to new actions versions
1 parent 167f0c0 commit 8206b61

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
- name: Set up Go
26-
uses: actions/setup-go@v1
26+
uses: actions/setup-go@v5
2727
with:
2828
go-version: 1.21
2929
- name: Build for all platforms
3030
run: |
3131
make build-all
3232
- name: Release
33-
uses: softprops/action-gh-release@v1
33+
uses: softprops/action-gh-release@v2
3434
with:
3535
files: |
3636
dist/*
3737
- name: Set up QEMU
38-
uses: docker/setup-qemu-action@v2
38+
uses: docker/setup-qemu-action@v3
3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@v2
40+
uses: docker/setup-buildx-action@v3
4141
- name: Login to DockerHub
42-
uses: docker/login-action@v2
42+
uses: docker/login-action@v3
4343
with:
4444
username: ${{ secrets.DOCKER_USERNAME }}
4545
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -58,7 +58,7 @@ jobs:
5858
type=semver,pattern={{major}}.{{minor}}.{{patch}},value=latest
5959
- name: Build and push semver tag
6060
id: docker_build_push_semver
61-
uses: docker/build-push-action@v2
61+
uses: docker/build-push-action@v6
6262
with:
6363
push: true
6464
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)