Skip to content

Commit

Permalink
#2089 update github actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
brosaplanella committed Jun 7, 2022
1 parent 79b9368 commit bc72c6d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run_benchmarks_over_history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install tox and asv
Expand All @@ -41,7 +41,7 @@ jobs:
asv run -m "GitHubRunner" -s ${{ github.event.inputs.ncommits }} \
${{ github.event.inputs.commit_start }}..${{ github.event.inputs.commit_end }}
- name: Upload results as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: asv_new_results
path: results
Expand All @@ -52,18 +52,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install asv
run: pip install asv
- name: Checkout pybamm-bench repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: pybamm-team/pybamm-bench
token: ${{ secrets.BENCH_PAT }}
- name: Download results artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: asv_new_results
path: new_results
Expand Down

0 comments on commit bc72c6d

Please sign in to comment.