Skip to content

Commit

Permalink
chore: update artifact actions from v3 to v4
Browse files Browse the repository at this point in the history
- Update actions/upload-artifact from v3 to v4 in cmake.yml
- Update actions/upload-artifact from v3 to v4 in cifuzz.yml
- Update actions/upload-artifact from v3 to v4 in wheel.yml

This change is required due to the upcoming deprecation of v3 on November 30, 2024.
  • Loading branch information
devin-ai-integration[bot] committed Nov 6, 2024
1 parent 3a525a2 commit dd24c31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
dry-run: false
language: c++
- name: Upload Crash
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
python -m pytest -v --log-cli-level=INFO
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}-${{ matrix.arch }}
path: ./build/*.7z
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
run: cp -f dist/*.tar.gz wheelhouse/

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
path: |
Expand Down

0 comments on commit dd24c31

Please sign in to comment.