Skip to content

Commit 39f061e

Browse files
author
Sylvain MARIE
committed
With latest versions of all actions
1 parent 4771aaf commit 39f061e

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/base.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4.1.1
26+
uses: actions/checkout@v4
2727

2828
- name: Install python 3.9
29-
uses: actions/setup-python@v5.1.0
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: 3.9
3232
architecture: x64
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ${{ matrix.os }}
5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v4.1.1
60+
uses: actions/checkout@v4
6161

6262
# General case
6363
- name: Install python ${{ matrix.nox_session.python }} for tests (not 3.5 not 3.14)
@@ -99,7 +99,7 @@ jobs:
9999
cache-build: true
100100

101101
- name: Install python 3.12 for nox
102-
uses: actions/setup-python@v5.1.0
102+
uses: actions/setup-python@v5
103103
with:
104104
python-version: 3.12
105105
architecture: x64
@@ -118,7 +118,7 @@ jobs:
118118
# Share ./docs/reports so that they can be deployed with doc in next job
119119
- name: Share reports with other jobs
120120
if: runner.os == 'Linux'
121-
uses: actions/upload-artifact@v4.3.1
121+
uses: actions/upload-artifact@v4
122122
with:
123123
name: reports_dir
124124
path: ./docs/reports
@@ -128,10 +128,10 @@ jobs:
128128
if: github.event_name == 'pull_request'
129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v4.1.1
131+
uses: actions/checkout@v4
132132

133133
- name: Install python 3.9 for nox
134-
uses: actions/setup-python@v5.1.0
134+
uses: actions/setup-python@v5
135135
with:
136136
python-version: 3.9
137137
architecture: x64
@@ -153,20 +153,20 @@ jobs:
153153
run: echo "$GITHUB_CONTEXT"
154154

155155
- name: Checkout with no depth
156-
uses: actions/checkout@v4.1.1
156+
uses: actions/checkout@v4
157157
with:
158158
fetch-depth: 0 # so that gh-deploy works
159159
# persist-credentials: false # see https://github.com/orgs/community/discussions/25702
160160

161161
- name: Install python 3.9 for nox
162-
uses: actions/setup-python@v5.1.0
162+
uses: actions/setup-python@v5
163163
with:
164164
python-version: 3.9
165165
architecture: x64
166166

167167
# 1) retrieve the reports generated previously
168168
- name: Retrieve reports
169-
uses: actions/download-artifact@v4.1.4
169+
uses: actions/download-artifact@v4
170170
with:
171171
name: reports_dir
172172
path: ./docs/reports
@@ -198,7 +198,7 @@ jobs:
198198
EOF
199199
- name: \[not on TAG\] Publish coverage report
200200
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads')
201-
uses: codecov/codecov-action@v4.1.1
201+
uses: codecov/codecov-action@v4
202202
with:
203203
files: ./docs/reports/coverage/coverage.xml
204204
- name: \[not on TAG\] Build wheel and sdist

.github/workflows/updater.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4.1.1
15+
- uses: actions/checkout@v4
1616
with:
1717
# [Required] Access token with `workflow` scope.
1818
token: ${{ secrets.WORKFLOW_SECRET }}
1919

2020
- name: Run GitHub Actions Version Updater
21-
uses: saadmk11/[email protected].1
21+
uses: saadmk11/[email protected]
2222
with:
2323
# [Required] Access token with `workflow` scope.
2424
token: ${{ secrets.WORKFLOW_SECRET }}

0 commit comments

Comments
 (0)