Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Action Versions #342

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
16 changes: 8 additions & 8 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected].1
uses: actions/[email protected].4

- name: Install python 3.9
uses: actions/[email protected]
Expand Down Expand Up @@ -57,10 +57,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected].1
uses: actions/[email protected].4

- name: Install python ${{ matrix.nox_session.python }} for tests
uses: MatteoH2O1999/[email protected].0 # actions/[email protected]
uses: MatteoH2O1999/[email protected].1 # actions/[email protected]
id: set-py
with:
python-version: ${{ matrix.nox_session.python }}
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
# Share ./docs/reports so that they can be deployed with doc in next job
- name: Share reports with other jobs
# if: matrix.nox_session == '...': not needed, if empty won't be shared
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
name: reports_dir
path: ./docs/reports
Expand All @@ -98,7 +98,7 @@ jobs:
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/[email protected].1
uses: actions/[email protected].4

- name: Install python 3.9 for nox
uses: actions/[email protected]
Expand All @@ -123,7 +123,7 @@ jobs:
run: echo "$GITHUB_CONTEXT"

- name: Checkout with no depth
uses: actions/[email protected].1
uses: actions/[email protected].4
with:
fetch-depth: 0 # so that gh-deploy works

Expand All @@ -135,7 +135,7 @@ jobs:

# 1) retrieve the reports generated previously
- name: Retrieve reports
uses: actions/[email protected].4
uses: actions/[email protected].7
with:
name: reports_dir
path: ./docs/reports
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
EOF
- name: \[not on TAG\] Publish coverage report
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads')
uses: codecov/codecov-action@v4.1.1
uses: codecov/codecov-action@v4.3.0
with:
files: ./docs/reports/coverage/coverage.xml

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].4
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}
Expand Down
Loading