Skip to content

Commit

Permalink
Use @v4 for actions/{upload,download}-artifact
Browse files Browse the repository at this point in the history
This will pick the latest available v4 for both actions without us
needing to care about exact version numbers. Should fix the clang-tidy
action.
  • Loading branch information
lmoureaux committed Oct 26, 2024
1 parent b1b59d6 commit 9fdcb95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: |
run-clang-tidy -p build | ./codacy-clang-tidy >report.json
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: clang-tidy-report
path: report.json
Expand All @@ -72,7 +72,7 @@ jobs:
needs: run
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: clang-tidy-report

Expand Down

0 comments on commit 9fdcb95

Please sign in to comment.