Skip to content

Commit a791cab

Browse files
Hippie Hackerclaude
andcommitted
fix: update GitHub Actions to latest versions
- actions/checkout@v3 → v4 - docker/login-action@v2 → v3 - actions/setup-go@v3 → v5 - actions/upload-artifact@v2 → v4 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c4ecace commit a791cab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
release:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333

@@ -40,13 +40,13 @@ jobs:
4040
run: git fetch --tags --force
4141

4242
- name: Docker Login
43-
uses: docker/login-action@v2
43+
uses: docker/login-action@v3
4444
with:
4545
registry: ghcr.io
4646
username: ${{ github.actor }}
4747
password: ${{ secrets.GITHUB_TOKEN }}
4848

49-
- uses: actions/setup-go@v3
49+
- uses: actions/setup-go@v5
5050
with:
5151
go-version: "~1.20"
5252

@@ -116,7 +116,7 @@ jobs:
116116

117117
- name: Upload artifacts to actions (if dry-run or snapshot)
118118
if: ${{ github.event.inputs.dry_run || github.event.inputs.snapshot }}
119-
uses: actions/upload-artifact@v2
119+
uses: actions/upload-artifact@v4
120120
with:
121121
name: release-artifacts
122122
path: |

0 commit comments

Comments
 (0)