Skip to content

Commit 386cc95

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 877979c commit 386cc95

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
os: [ubuntu-22.04, ubuntu-24.04]
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Install System Python
2424
run: |
2525
sudo apt install python3-dev python3-pip python3-venv
@@ -47,7 +47,7 @@ jobs:
4747
os: [windows-latest, macos-latest, ubuntu-latest]
4848
steps:
4949
- name: Checkout project
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
- name: Install Python
5252
uses: actions/setup-python@v5
5353
with:
@@ -73,7 +73,7 @@ jobs:
7373
matrix:
7474
os: [ubuntu-latest, windows-latest, macos-latest]
7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777
- uses: conda-incubator/setup-miniconda@v3
7878
with:
7979
auto-update-conda: true
@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797
- name: Install System Python and Git
9898
run: yum install -y python3-devel python3-pip python3 git
99-
- uses: actions/checkout@v4
99+
- uses: actions/checkout@v5
100100
- name: Install Testing Requirements
101101
run: python3 -m pip install nox
102102
- name: Run Tests
@@ -114,7 +114,7 @@ jobs:
114114
steps:
115115
- name: Install Python 3.8 and Git from AppStream
116116
run: yum install -y python38-devel python38-pip python38-pip-wheel python38 git
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@v5
118118
- name: Install Testing Requirements
119119
run: python3.8 -m pip install nox
120120
- name: Run Tests
@@ -132,7 +132,7 @@ jobs:
132132
steps:
133133
- name: Install Python 3.9 and Git from AppStream
134134
run: yum install -y python39-devel python39-pip python39-pip-wheel python39 git
135-
- uses: actions/checkout@v4
135+
- uses: actions/checkout@v5
136136
- name: Install Testing Requirements
137137
run: python3.9 -m pip install nox
138138
- name: Run Tests
@@ -150,7 +150,7 @@ jobs:
150150
steps:
151151
- name: Install System Python and Git
152152
run: yum install -y python3-devel python3-pip python3 git
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@v5
154154
- name: Install Testing Requirements
155155
run: python3 -m pip install nox
156156
- name: Run Tests
@@ -185,7 +185,7 @@ jobs:
185185
python:p
186186
python-pip:p
187187
update: true
188-
- uses: actions/checkout@v4
188+
- uses: actions/checkout@v5
189189
- name: Run tests
190190
run: |
191191
python -m venv .venv
@@ -212,7 +212,7 @@ jobs:
212212
apk add python3 python3-dev py3-pip py3-nox py3-attrs git
213213
apk add bash gpg curl
214214
- name: Download Source
215-
uses: actions/checkout@v4
215+
uses: actions/checkout@v5
216216
- name: Run Tests
217217
run: |
218218
nox -e tests
@@ -230,7 +230,7 @@ jobs:
230230
run: |
231231
brew install python git
232232
- name: Download Source
233-
uses: actions/checkout@v4
233+
uses: actions/checkout@v5
234234
- name: Build venv
235235
run: |
236236
python3 -m venv .venv
@@ -259,7 +259,7 @@ jobs:
259259
run: |
260260
pacman --noconfirm -Sy python python-pip git
261261
- name: Download Source
262-
uses: actions/checkout@v4
262+
uses: actions/checkout@v5
263263
- name: Create and activate environment
264264
run: |
265265
python -m venv .venv

0 commit comments

Comments
 (0)