diff options
author | Jo-Philipp Wich <jo@mein.io> | 2025-02-01 15:13:54 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2025-02-01 15:13:54 +0100 |
commit | 6dd08716205fb974215521fd03ebcaa96c26b031 (patch) | |
tree | 14a8af136e6e91be57ed504c25a62f27ac714321 | |
parent | 6f71a35c4cfa3fd600addd0c1eedcd7eba195c2e (diff) |
ci: bump actions/upload-artifact to v4
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | .github/workflows/debian.yml | 2 | ||||
-rw-r--r-- | .github/workflows/jsdoc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/openwrt-ci-master.yml | 2 | ||||
-rw-r--r-- | .github/workflows/openwrt-ci-pull-request.yml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 52c6f9e..6286185 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -29,7 +29,7 @@ jobs: dpkg-buildpackage -b -us -uc - name: Archive code coverage results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: deb path: '*ucode*.deb' diff --git a/.github/workflows/jsdoc.yml b/.github/workflows/jsdoc.yml index 9d9d394..427250b 100644 --- a/.github/workflows/jsdoc.yml +++ b/.github/workflows/jsdoc.yml @@ -20,7 +20,7 @@ jobs: run: npm run doc - name: Archive docs as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: docs path: ./docs/ diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 72f3454..f8eb43b 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -31,7 +31,7 @@ jobs: make - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: minimal-build diff --git a/.github/workflows/openwrt-ci-master.yml b/.github/workflows/openwrt-ci-master.yml index f95c924..53ded7c 100644 --- a/.github/workflows/openwrt-ci-master.yml +++ b/.github/workflows/openwrt-ci-master.yml @@ -24,7 +24,7 @@ jobs: - uses: ynezz/gh-actions-openwrt-ci-native@v0.0.2 - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: native-build-artifacts diff --git a/.github/workflows/openwrt-ci-pull-request.yml b/.github/workflows/openwrt-ci-pull-request.yml index 8d6ad34..4db2cb8 100644 --- a/.github/workflows/openwrt-ci-pull-request.yml +++ b/.github/workflows/openwrt-ci-pull-request.yml @@ -26,7 +26,7 @@ jobs: CI_CLANG_VERSION_LIST: 11 - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: native-build-artifacts |