From 5e17117e19a876407aafeeb7cbadbd086d299175 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 02:45:08 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cmake-build.yml | 4 ++-- .github/workflows/cmsis-pack.yml | 2 +- .github/workflows/make-dylib.yml | 4 ++-- .github/workflows/make-examples.yml | 4 ++-- .github/workflows/make-lib.yml | 4 ++-- .github/workflows/make-wasm.yml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cmake-build.yml b/.github/workflows/cmake-build.yml index e87545d..9210c44 100644 --- a/.github/workflows/cmake-build.yml +++ b/.github/workflows/cmake-build.yml @@ -40,7 +40,7 @@ jobs: # 打包动态库 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cmake-linux-artifact path: | @@ -64,7 +64,7 @@ jobs: # 打包动态库 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cmake-windows-artifact path: | diff --git a/.github/workflows/cmsis-pack.yml b/.github/workflows/cmsis-pack.yml index e54d99c..05fcc55 100644 --- a/.github/workflows/cmsis-pack.yml +++ b/.github/workflows/cmsis-pack.yml @@ -41,7 +41,7 @@ jobs: run: | python thirds/zipack --project=./support/project.toml cmsis-pack - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cmsis-pack-artifact path: target_package/*.pack diff --git a/.github/workflows/make-dylib.yml b/.github/workflows/make-dylib.yml index d3d90c1..3b1724c 100644 --- a/.github/workflows/make-dylib.yml +++ b/.github/workflows/make-dylib.yml @@ -53,7 +53,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dylib-artifact path: target/* @@ -92,7 +92,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dll-artifact path: target/* diff --git a/.github/workflows/make-examples.yml b/.github/workflows/make-examples.yml index 1c67368..c55e915 100644 --- a/.github/workflows/make-examples.yml +++ b/.github/workflows/make-examples.yml @@ -65,7 +65,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }}_${{ matrix.arch }}-artifact path: target/*.out @@ -105,7 +105,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }}_${{ matrix.arch }}-artifact path: | diff --git a/.github/workflows/make-lib.yml b/.github/workflows/make-lib.yml index cdca781..4220f5f 100644 --- a/.github/workflows/make-lib.yml +++ b/.github/workflows/make-lib.yml @@ -50,7 +50,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "gcc-lib-${{ matrix.target-cpu }}-without-div" path: target/* @@ -83,7 +83,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "gcc-lib-${{ matrix.target-cpu }}" path: target/* diff --git a/.github/workflows/make-wasm.yml b/.github/workflows/make-wasm.yml index 69f597d..5979fb3 100644 --- a/.github/workflows/make-wasm.yml +++ b/.github/workflows/make-wasm.yml @@ -41,7 +41,7 @@ jobs: # 打包 - name: Upload artifact if: github.ref == 'refs/heads/master' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wasm-artifact path: target/*.wasm