Skip to content

Update GitHub Action Versions #343

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
@@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected].1
uses: actions/[email protected].6

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

- name: Install python ${{ matrix.nox_session.python }} for tests
uses: MatteoH2O1999/setup-python@v3.2.0 # actions/[email protected]
uses: MatteoH2O1999/setup-python@v4.0.0 # actions/[email protected]
id: set-py
with:
python-version: ${{ matrix.nox_session.python }}
@@ -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
@@ -98,7 +98,7 @@ jobs:
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/[email protected].1
uses: actions/[email protected].6

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

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

@@ -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
@@ -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.4.1
with:
files: ./docs/reports/coverage/coverage.xml

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

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