Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
# release managers to copy-paste bullets into CHANGELOG.md.
- name: Upload CHANGELOG-UNRELEASED artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: changelog-unreleased
path: CHANGELOG-UNRELEASED.md
Expand All @@ -101,7 +101,7 @@ jobs:

- name: Upload release notes artifact
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-notes
path: RELEASE_NOTES.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ jobs:
RVT_SAMPLES_DIR: ${{ github.workspace }}/_corpus/examples/Autodesk
run: python3 -m pytest tests/python -v
- name: Upload wheel artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rvt-wheel-${{ matrix.os }}
path: dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Upload crash corpus on failure
if: failure() && steps.filter.outputs.skip != 'true'
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fdd378f8f2a4b9 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
with:
name: crash-${{ matrix.target }}-${{ github.run_id }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# macs too, add a separate job with `target: x86_64-apple-darwin`.

- name: Upload wheel artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.os }}
path: dist/*.whl
Expand All @@ -106,7 +106,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sdist
path: dist/*.tar.gz
Expand Down
Loading