Skip to content

Commit

Permalink
Update CI to use actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikh committed Jan 23, 2025
1 parent e65b392 commit 1179d01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache-key: ${{ matrix.go }}
output-format: binary
output-file: "./staticcheck.bin"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "staticcheck-${{ github.sha }}-${{ matrix.go }}-${{ matrix.os }}.bin"
path: "./staticcheck.bin"
Expand All @@ -45,7 +45,7 @@ jobs:
with:
go-version: "stable"
# this downloads all artifacts of the current workflow into the current working directory, creating one directory per artifact
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
- id: glob
run: |
# We replace newlines with %0A, which GitHub apparently magically turns back into newlines
Expand Down

0 comments on commit 1179d01

Please sign in to comment.