Skip to content

Commit

Permalink
ci: update to actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
actions/upload-artifact@v3 is deprecated and was failing
  • Loading branch information
antalsz committed Jan 9, 2025
1 parent b71b6d4 commit 79814db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Archive benchmark results
if: ${{ github.ref == 'refs/heads/main'}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmarks-${{ matrix.os }}
path: target/criterion
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-quil-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
pip install quil --find-links dist --force-reinstall
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
run: |
pip install quil --find-links dist --force-reinstall
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
run: |
pip install quil --find-links dist --force-reinstall --no-deps
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
Expand All @@ -151,7 +151,7 @@ jobs:
command: sdist
args: --manifest-path quil-py/Cargo.toml --out dist
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist
Expand Down

0 comments on commit 79814db

Please sign in to comment.