Skip to content

Commit

Permalink
Use actions/upload-artifact@v4 in GHA workflow (#13)
Browse files Browse the repository at this point in the history
actions/upload-artifact@v2 is deprecated and workflows aren't able to
use it any more.
  • Loading branch information
chrisnovakovic authored Oct 25, 2024
1 parent 473ec35 commit 2439178
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ jobs:
run: ./pleasew test --log_file plz-out/log/test.log
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: logs
path: |
plz-out/log
path: plz-out/log
release:
needs: [test]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2439178

Please sign in to comment.