Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and XiangYyang committed Dec 22, 2023
1 parent 2c1c2e5 commit 5e17117
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmsis-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/make-dylib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down Expand Up @@ -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/*
4 changes: 2 additions & 2 deletions .github/workflows/make-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/make-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down Expand Up @@ -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/*
2 changes: 1 addition & 1 deletion .github/workflows/make-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5e17117

Please sign in to comment.