Skip to content

Commit ae5794a

Browse files
committed
chore(ci): update GitHub Actions dependencies for release workflow
- Upgrade actions/setup-go from v5 to v6 - Upgrade actions/cache from v4 to v5 - Upgrade actions/upload-artifact from v4 to v6
1 parent 6eec385 commit ae5794a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
fetch-depth: 0
2626

2727
- name: Set up Go
28-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
2929
with:
3030
go-version: stable
3131
cache: true
3232

3333
- name: Cache Go modules
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/go/pkg/mod
3737
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -192,7 +192,7 @@ jobs:
192192
echo "EOF" >> $GITHUB_OUTPUT
193193
194194
- name: Upload release artifacts (for job debug/download)
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v6
196196
with:
197197
name: release-files
198198
path: release/

0 commit comments

Comments
 (0)