Skip to content

Commit aeef9b9

Browse files
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 4e28810 commit aeef9b9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: [3.6, 3.7, 3.8, 3.9]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v2
2323
with:
@@ -53,7 +53,7 @@ jobs:
5353
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
5454

5555
steps:
56-
- uses: actions/checkout@master
56+
- uses: actions/checkout@v3
5757
- name: Set up Python 3.8
5858
uses: actions/setup-python@v1
5959
with:

.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
4343

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

.github/workflows/latest-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
latest-changes:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Dump GitHub context
2121
env:
2222
GITHUB_CONTEXT: ${{ toJson(github) }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: [3.6, 3.7, 3.8, 3.9]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Set up Python ${{ matrix.python-version }}
1717
uses: actions/setup-python@v2
1818
with:
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-20.04
4242

4343
steps:
44-
- uses: actions/checkout@master
44+
- uses: actions/checkout@v3
4545
- name: Set up Python 3.8
4646
uses: actions/setup-python@v1
4747
with:

.github/workflows/serve-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: |
1313
echo "PYTHONPATH=/home/runner/work/py2k/py2k" >> $GITHUB_ENV
1414
echo "/home/runner/work/py2k/py2k/py2k" >> $GITHUB_PATH
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- uses: actions/setup-python@v2
1717
with:
1818
python-version: 3.6

0 commit comments

Comments
 (0)