Skip to content

Commit

Permalink
GITHUB: workflows/testing.yml: update to actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Jan 26, 2024
1 parent 42d8ebf commit b8dc4a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- name: 'Build Dist Assets'
run: |
misc/cirun -u 1000 make mkassets
- uses: actions/upload-artifact@v3.1.3
- uses: actions/upload-artifact@v4
with: { name: assets, path: assets/ }
- uses: actions/upload-artifact@v3.1.3
- uses: actions/upload-artifact@v4
with: { name: dist-tarball, path: assets/*.tar* }
- name: 'Upload API Docs' # http://tim-janik.github.io/docs/anklang
if: github.repository == 'tim-janik/anklang' && github.ref == 'refs/heads/trunk'
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
misc/cirun -u 1000 make -j`nproc` check
misc/cirun -u 1000 make x11test-v
# Artifact upload from x11test
- uses: actions/upload-artifact@v3.1.3
- uses: actions/upload-artifact@v4
if: always()
with: { name: "x11test", path: "out/x11test/" }

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: |
misc/cirun -u 1000 make -j`nproc` clang-tidy
# Artifact upload from clang-tidy
- uses: actions/upload-artifact@v3.1.3
- uses: actions/upload-artifact@v4
with: { name: clang-tidy, path: out/clang-tidy/ }
- name: 'Make branch-check'
# Use non-0 exit status for a failing branch-check on PRs
Expand Down

0 comments on commit b8dc4a9

Please sign in to comment.