Skip to content

Commit 55936d7

Browse files
Bump actions/checkout from 2.3.4 to 3 (#1425)
* Bump actions/checkout from 2.3.4 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.4...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Update to ``3.0.0`` Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniël van Noord <[email protected]>
1 parent 10b0d80 commit 55936d7

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
pre-commit-key: ${{ steps.generate-pre-commit-key.outputs.key }}
2323
steps:
2424
- name: Check out code from GitHub
25-
uses: actions/checkout@v2.3.4
25+
uses: actions/checkout@v3.0.0
2626
with:
2727
fetch-depth: 0
2828
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
@@ -81,7 +81,7 @@ jobs:
8181
needs: prepare-base
8282
steps:
8383
- name: Check out code from GitHub
84-
uses: actions/checkout@v2.3.4
84+
uses: actions/checkout@v3.0.0
8585
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
8686
id: python
8787
uses: actions/[email protected]
@@ -128,7 +128,7 @@ jobs:
128128
python-key: ${{ steps.generate-python-key.outputs.key }}
129129
steps:
130130
- name: Check out code from GitHub
131-
uses: actions/checkout@v2.3.4
131+
uses: actions/checkout@v3.0.0
132132
with:
133133
fetch-depth: 0
134134
- name: Set up Python ${{ matrix.python-version }}
@@ -172,7 +172,7 @@ jobs:
172172
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
173173
steps:
174174
- name: Check out code from GitHub
175-
uses: actions/checkout@v2.3.4
175+
uses: actions/checkout@v3.0.0
176176
- name: Set up Python ${{ matrix.python-version }}
177177
id: python
178178
uses: actions/[email protected]
@@ -213,7 +213,7 @@ jobs:
213213
COVERAGERC_FILE: .coveragerc
214214
steps:
215215
- name: Check out code from GitHub
216-
uses: actions/checkout@v2.3.4
216+
uses: actions/checkout@v3.0.0
217217
- name: Set up Python ${{ matrix.python-version }}
218218
id: python
219219
uses: actions/[email protected]
@@ -257,7 +257,7 @@ jobs:
257257
python-key: ${{ steps.generate-python-key.outputs.key }}
258258
steps:
259259
- name: Check out code from GitHub
260-
uses: actions/checkout@v2.3.4
260+
uses: actions/checkout@v3.0.0
261261
with:
262262
fetch-depth: 0
263263
- name: Set up Python ${{ matrix.python-version }}
@@ -305,7 +305,7 @@ jobs:
305305
# Workaround to set correct temp directory on Windows
306306
# https://github.com/actions/virtual-environments/issues/712
307307
- name: Check out code from GitHub
308-
uses: actions/checkout@v2.3.4
308+
uses: actions/checkout@v3.0.0
309309
- name: Set up Python ${{ matrix.python-version }}
310310
id: python
311311
uses: actions/[email protected]
@@ -340,7 +340,7 @@ jobs:
340340
python-key: ${{ steps.generate-python-key.outputs.key }}
341341
steps:
342342
- name: Check out code from GitHub
343-
uses: actions/checkout@v2.3.4
343+
uses: actions/checkout@v3.0.0
344344
with:
345345
fetch-depth: 0
346346
- name: Set up Python ${{ matrix.python-version }}
@@ -383,7 +383,7 @@ jobs:
383383
python-version: ["pypy3"]
384384
steps:
385385
- name: Check out code from GitHub
386-
uses: actions/checkout@v2.3.4
386+
uses: actions/checkout@v3.0.0
387387
- name: Set up Python ${{ matrix.python-version }}
388388
id: python
389389
uses: actions/[email protected]

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3.0.0
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/release-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 5
1414
steps:
1515
- name: Check out code from GitHub
16-
uses: actions/checkout@v2.3.4
16+
uses: actions/checkout@v3.0.0
1717
- name: Set up Python
1818
id: python
1919
uses: actions/[email protected]

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check out code from Github
17-
uses: actions/checkout@v2.3.4
17+
uses: actions/checkout@v3.0.0
1818
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
1919
id: python
2020
uses: actions/[email protected]

0 commit comments

Comments
 (0)