Skip to content

Commit

Permalink
Update some of github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Sep 9, 2024
1 parent b18a858 commit f80fb9a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
wasm-pack build --target web
- name: Upload WebAssembly artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: vrp_cli_wasm
path: vrp-cli/pkg/
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
token: ${{secrets.CODECOV_TOKEN}}

- name: Archive code coverage results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: cobertura.xml
4 changes: 2 additions & 2 deletions .github/workflows/experiments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- run: python ./experiments/etc/collect-metrics.py ${{ github.event.inputs.config_url }}

- name: Upload Results artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: experiments-results.csv
path: experiments/etc/collect-metrics-results.csv
Expand All @@ -50,7 +50,7 @@ jobs:
- run: python ./experiments/etc/bench-scientific.py ${{ github.event.inputs.config_url }}

- name: Upload Results artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: bench-results
path: experiments/etc/results
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maturin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: ./vrp-cli/dist
Expand All @@ -50,7 +50,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: ./vrp-cli/dist
Expand All @@ -73,7 +73,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: ./vrp-cli/dist
Expand All @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
needs: [linux, windows, macos] #, sdist]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
- name: Publish to PyPI
Expand Down

0 comments on commit f80fb9a

Please sign in to comment.