Skip to content

Commit ab02f1b

Browse files
committed
Fix release workflow
1 parent edcc5fc commit ab02f1b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
steps:
2626
- name: Check out the code
27-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030

3131
- name: Set up Go
32-
uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # tag=v3.2.1
32+
uses: actions/setup-go@v6
3333
with:
3434
go-version-file: 'go.mod'
3535
cache: true
@@ -41,7 +41,7 @@ jobs:
4141
run: goreleaser release --rm-dist --debug
4242

4343
- name: Archive generated artifacts
44-
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # tag=v3.1.0
44+
uses: actions/upload-artifact@v5
4545
with:
4646
name: parca-push-dist-release
4747
if-no-files-found: error
@@ -54,12 +54,12 @@ jobs:
5454
runs-on: ubuntu-latest
5555
needs: binaries
5656
steps:
57-
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
58-
57+
uses: actions/checkout@v6
58+
5959
- name: Publish Vercel
6060
run: |
6161
curl -X POST "https://api.vercel.com/v1/integrations/deploy/${{ secrets.VERCEL_WEBHOOK }}"
62-
62+
6363
container:
6464
name: Build and release container images
6565
runs-on: ubuntu-latest
@@ -83,10 +83,10 @@ jobs:
8383
run: dnf install --assumeyes --repo fedora git make jq
8484

8585
- name: Check out code into the Go module directory
86-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
86+
uses: actions/checkout@v6
8787

8888
- name: Set up Go
89-
uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # tag=v3.2.1
89+
uses: actions/setup-go@v6
9090
with:
9191
go-version-file: 'go.mod'
9292
check-latest: true
@@ -95,7 +95,7 @@ jobs:
9595
shell: bash
9696
run: echo "GITHUB_BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
9797

98-
- uses: actions/download-artifact@v3
98+
- uses: actions/download-artifact@v6
9999
with:
100100
name: parca-push-dist-release
101101
path: goreleaser/dist

0 commit comments

Comments
 (0)