Skip to content

Commit c33524e

Browse files
[3.10] build(deps): bump actions/checkout from 2 to 3 (GH-32226) (#91723)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>. (cherry picked from commit 1ba63e3)
1 parent 73af4b0 commit c33524e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run_tests: ${{ steps.check.outputs.run_tests }}
2828
run_ssl_tests: ${{ steps.check.outputs.run_ssl_tests }}
2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- name: Check for source changes
3232
id: check
3333
run: |
@@ -81,7 +81,7 @@ jobs:
8181
needs: check_source
8282
if: needs.check_source.outputs.run_tests == 'true'
8383
steps:
84-
- uses: actions/checkout@v2
84+
- uses: actions/checkout@v3
8585
- uses: actions/setup-python@v3
8686
- name: Install Dependencies
8787
run: sudo ./.github/workflows/posix-deps-apt.sh
@@ -127,7 +127,7 @@ jobs:
127127
env:
128128
IncludeUwp: 'true'
129129
steps:
130-
- uses: actions/checkout@v2
130+
- uses: actions/checkout@v3
131131
- name: Build CPython
132132
run: .\PCbuild\build.bat -e -p Win32
133133
- name: Display build info
@@ -143,7 +143,7 @@ jobs:
143143
env:
144144
IncludeUwp: 'true'
145145
steps:
146-
- uses: actions/checkout@v2
146+
- uses: actions/checkout@v3
147147
- name: Register MSVC problem matcher
148148
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
149149
- name: Build CPython
@@ -161,7 +161,7 @@ jobs:
161161
env:
162162
PYTHONSTRICTEXTENSIONBUILD: 1
163163
steps:
164-
- uses: actions/checkout@v2
164+
- uses: actions/checkout@v3
165165
- name: Prepare homebrew environment variables
166166
run: |
167167
echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
@@ -184,7 +184,7 @@ jobs:
184184
OPENSSL_VER: 1.1.1n
185185
PYTHONSTRICTEXTENSIONBUILD: 1
186186
steps:
187-
- uses: actions/checkout@v2
187+
- uses: actions/checkout@v3
188188
- name: Register gcc problem matcher
189189
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
190190
- name: Install Dependencies
@@ -232,7 +232,7 @@ jobs:
232232
OPENSSL_DIR: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
233233
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
234234
steps:
235-
- uses: actions/checkout@v2
235+
- uses: actions/checkout@v3
236236
- name: Register gcc problem matcher
237237
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
238238
- name: Install Dependencies

.github/workflows/build_msi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
name: 'Windows (x86) Installer'
2626
runs-on: windows-latest
2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929
- name: Build CPython installer
3030
run: .\Tools\msi\build.bat -x86
3131

3232
build_win_amd64:
3333
name: 'Windows (x64) Installer'
3434
runs-on: windows-latest
3535
steps:
36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
- name: Build CPython installer
3838
run: .\Tools\msi\build.bat -x64

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: 'Docs'
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929
- name: Register Sphinx problem matcher
3030
run: echo "::add-matcher::.github/problem-matchers/sphinx.json"
3131
- name: 'Install Dependencies'

0 commit comments

Comments
 (0)