Skip to content

Commit 0a4a335

Browse files
committed
CI: Update to use actions/{up,down}load-artifact v4
Update to v4 of the upload-artifact and download-artifact GitHub actions. The newer versions are faster, and v3 is going to be deprecated next November: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
1 parent d32ddb9 commit 0a4a335

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
> _work/meson/symbols
5353
(cd _work/meson/prefix && find lib -type f | sort) > _work/meson/files
5454
- name: Meson - Archive Artifacts
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: build-meson
5858
path: _work/meson/prefix
@@ -71,7 +71,7 @@ jobs:
7171
> _work/cmake/symbols
7272
(cd _work/cmake/prefix && find lib -type f | sort) > _work/cmake/files
7373
- name: CMake - Archive Artifacts
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: build-cmake
7777
path: _work/cmake/prefix
@@ -81,7 +81,7 @@ jobs:
8181
diff -u _work/{cmake,meson}/symbols
8282
diff -Naur _work/{cmake,meson}/prefix/usr/include/
8383
- name: Archive Documentation
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: docs
8787
path: _work/cmake/build/Documentation/html
@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ubuntu-20.04
9292
steps:
9393
- name: Fetch Documentation
94-
uses: actions/download-artifact@v3
94+
uses: actions/download-artifact@v4
9595
with:
9696
name: docs
9797
path: html

.github/workflows/codestyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
scripts/check-style -ocode-style.diff origin/master
2626
- name: Archive Diff
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
if: failure()
2929
with:
3030
name: diff

0 commit comments

Comments
 (0)