Skip to content

Commit 358f105

Browse files
Update GitHub Action Versions
1 parent 36f4053 commit 358f105

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/base.yml

Lines changed: 15 additions & 15 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.2.2
2727

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

6262
# General case
6363
- name: Install python ${{ matrix.nox_session.python }} for tests (not 3.5 not 3.13)
6464
if: ${{ ! contains(fromJson('["3.5", "3.13"]'), matrix.nox_session.python ) }}
65-
uses: MatteoH2O1999/setup-python@v4 # actions/setup-python@v5.0.0
65+
uses: MatteoH2O1999/setup-python@v4.1.1 # actions/setup-python@v5.0.0
6666
id: set-py
6767
with:
6868
python-version: ${{ matrix.nox_session.python }}
@@ -73,7 +73,7 @@ jobs:
7373
# Particular case of issue with 3.5
7474
- name: Install python ${{ matrix.nox_session.python }} for tests (3.5)
7575
if: contains(fromJson('["3.5"]'), matrix.nox_session.python )
76-
uses: MatteoH2O1999/setup-python@v4 # actions/setup-python@v5.0.0
76+
uses: MatteoH2O1999/setup-python@v4.1.1 # actions/setup-python@v5.0.0
7777
id: set-py-35
7878
with:
7979
python-version: ${{ matrix.nox_session.python }}
@@ -88,7 +88,7 @@ jobs:
8888

8989
- name: Install python ${{ matrix.nox_session.python }} for tests (3.13)
9090
if: contains(fromJson('["3.13"]'), matrix.nox_session.python )
91-
uses: actions/setup-python@v5
91+
uses: actions/setup-python@v5.3.0
9292
id: set-py-latest
9393
with:
9494
# Include all versions including pre releases
@@ -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.3.0
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.4.3
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.2.2
132132

133133
- name: Install python 3.9 for nox
134-
uses: actions/setup-python@v5.1.0
134+
uses: actions/setup-python@v5.3.0
135135
with:
136136
python-version: 3.9
137137
architecture: x64
@@ -153,19 +153,19 @@ 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.2.2
157157
with:
158158
fetch-depth: 0 # so that gh-deploy works
159159

160160
- name: Install python 3.9 for nox
161-
uses: actions/setup-python@v5.1.0
161+
uses: actions/setup-python@v5.3.0
162162
with:
163163
python-version: 3.9
164164
architecture: x64
165165

166166
# 1) retrieve the reports generated previously
167167
- name: Retrieve reports
168-
uses: actions/download-artifact@v4.1.4
168+
uses: actions/download-artifact@v4.1.8
169169
with:
170170
name: reports_dir
171171
path: ./docs/reports
@@ -197,7 +197,7 @@ jobs:
197197
EOF
198198
- name: \[not on TAG\] Publish coverage report
199199
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads')
200-
uses: codecov/codecov-action@v4.1.1
200+
uses: codecov/codecov-action@v5.0.7
201201
with:
202202
files: ./docs/reports/coverage/coverage.xml
203203
- name: \[not on TAG\] Build wheel and sdist
@@ -214,7 +214,7 @@ jobs:
214214
# 8) Publish the wheel on PyPi
215215
- name: \[TAG only\] Deploy on PyPi
216216
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
217-
uses: pypa/gh-action-pypi-publish@release/v1
217+
uses: pypa/gh-action-pypi-publish@v1.12.2
218218
with:
219219
user: __token__
220220
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

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

0 commit comments

Comments
 (0)