Skip to content

Commit 311aff2

Browse files
ci: upgrade build runner image, upx, and github action version
1 parent 261e5a0 commit 311aff2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
release:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
env:
1313
DOCKER_CLI_EXPERIMENTAL: "enabled"
1414
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_PAT }}
@@ -23,18 +23,20 @@ jobs:
2323
uses: docker/setup-qemu-action@v1
2424
-
2525
name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v1
26+
uses: docker/setup-buildx-action@v3
2727
-
2828
name: Docker Login
29-
uses: docker/login-action@v1
29+
uses: docker/login-action@v3
3030
with:
3131
username: ${{ github.repository_owner }}
3232
password: ${{ secrets.DOCKER_HUB_PAT }}
3333
- name: Snapcraft Login
3434
uses: samuelmeuli/action-snapcraft@v2
3535
-
3636
name: Install upx
37-
run: sudo apt-get install upx -y
37+
run: |
38+
sudo apt-get update
39+
sudo apt-get install upx -y
3840
-
3941
name: Set up Go
4042
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)