Skip to content

Commit 7d34952

Browse files
dependabot[bot]mr-c
authored andcommitted
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b64b376 commit 7d34952

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
TOXENV: ${{ format('py{0}{1}-{2}', matrix.py-ver-major, matrix.py-ver-minor, matrix.step) }}
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232

3333
- name: Set up Python
3434
uses: actions/setup-python@v3
@@ -73,7 +73,7 @@ jobs:
7373
py: /opt/python/${{ matrix.pyver }}/bin/python
7474
img: quay.io/pypa/manylinux2014_${{ matrix.arch }}
7575
steps:
76-
- uses: actions/checkout@v2
76+
- uses: actions/checkout@v3
7777
with:
7878
fetch-depth: 0
7979
- name: Set up QEMU
@@ -117,7 +117,7 @@ jobs:
117117
TOXENV: ${{ format('py310-{0}', matrix.step) }}
118118

119119
steps:
120-
- uses: actions/checkout@v2
120+
- uses: actions/checkout@v3
121121
with:
122122
fetch-depth: 0
123123

@@ -150,7 +150,7 @@ jobs:
150150
runs-on: ubuntu-20.04
151151

152152
steps:
153-
- uses: actions/checkout@v2
153+
- uses: actions/checkout@v3
154154

155155
- name: Set up Python
156156
uses: actions/setup-python@v3

.github/workflows/codeql-analysis.yml

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

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626
with:
2727
# We must fetch at least the immediate parents so that if this is
2828
# a pull request then we can checkout the head.

.github/workflows/quay-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@master
11+
- uses: actions/checkout@v3
1212
- name: Get image tags
1313
id: image_tags
1414
run: |

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Build manylinux2010 Python wheels
1313
uses: RalfG/[email protected]_x86_64
1414
with:
@@ -33,7 +33,7 @@ jobs:
3333
deploy_aarch64:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
- name: Set up QEMU
3838
uses: docker/setup-qemu-action@v1
3939
- name: Build manylinux2014 Python wheels

0 commit comments

Comments
 (0)