diff options
author | Jo-Philipp Wich <jo@mein.io> | 2024-09-20 08:50:55 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2024-09-20 08:50:55 +0200 |
commit | 6ea37c8fa4c4780ff99441ac787a2c9cd38c7bc6 (patch) | |
tree | ffb131fa8542f88f05dedbd9de02dec4cd39ac2f /.github/workflows | |
parent | 26d7292934493ebdb848dc4b3dc9d984525be9e3 (diff) |
ci: bump upload-artifact to v3
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to '.github/workflows')
-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 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/jsdoc.yml b/.github/workflows/jsdoc.yml index b2eaefe..9d9d394 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@v2 + uses: actions/upload-artifact@v3 with: name: docs path: ./docs/ diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 31e612f..ad5f2ce 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@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: minimal-build diff --git a/.github/workflows/openwrt-ci-master.yml b/.github/workflows/openwrt-ci-master.yml index d50e7dc..fda3f80 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@v2 + uses: actions/upload-artifact@v3 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 2469fb7..e8c29c1 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@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: native-build-artifacts |