Skip to content

Commit 6a14a11

Browse files
deps(deps): bump actions/upload-artifact from 4 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6f71e0d commit 6a14a11

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# release managers to copy-paste bullets into CHANGELOG.md.
8181
- name: Upload CHANGELOG-UNRELEASED artifact
8282
if: github.ref == 'refs/heads/main'
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v7
8484
with:
8585
name: changelog-unreleased
8686
path: CHANGELOG-UNRELEASED.md
@@ -101,7 +101,7 @@ jobs:
101101

102102
- name: Upload release notes artifact
103103
if: startsWith(github.ref, 'refs/tags/v')
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v7
105105
with:
106106
name: release-notes
107107
path: RELEASE_NOTES.md

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ jobs:
452452
RVT_SAMPLES_DIR: ${{ github.workspace }}/_corpus/examples/Autodesk
453453
run: python3 -m pytest tests/python -v
454454
- name: Upload wheel artifact
455-
uses: actions/upload-artifact@v4
455+
uses: actions/upload-artifact@v7
456456
with:
457457
name: rvt-wheel-${{ matrix.os }}
458458
path: dist/*.whl

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
9393
- name: Upload crash corpus on failure
9494
if: failure() && steps.filter.outputs.skip != 'true'
95-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
95+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9696
with:
9797
name: crash-${{ matrix.target }}-${{ github.run_id }}
9898
path: |

.github/workflows/perf-budget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
--require-category medium \
5959
--json-out target/perf-budgets/perf-budget.json \
6060
"${args[@]}"
61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v7
6262
if: always()
6363
with:
6464
name: perf-budget-json

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
# macs too, add a separate job with `target: x86_64-apple-darwin`.
9090

9191
- name: Upload wheel artifact
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: wheel-${{ matrix.os }}
9595
path: dist/*.whl
@@ -112,7 +112,7 @@ jobs:
112112
command: sdist
113113
args: --out dist
114114
- name: Upload sdist artifact
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: sdist
118118
path: dist/*.tar.gz

0 commit comments

Comments
 (0)