Skip to content

Commit 1ba63e3

Browse files
build(deps): bump actions/checkout from 2 to 3 (#32226)
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>
1 parent 326ae71 commit 1ba63e3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run_tests: ${{ steps.check.outputs.run_tests }}
2929
run_ssl_tests: ${{ steps.check.outputs.run_ssl_tests }}
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- name: Check for source changes
3333
id: check
3434
run: |
@@ -60,7 +60,7 @@ jobs:
6060
needs: check_source
6161
if: needs.check_source.outputs.run_tests == 'true'
6262
steps:
63-
- uses: actions/checkout@v2
63+
- uses: actions/checkout@v3
6464
- uses: actions/setup-python@v3
6565
- name: Install Dependencies
6666
run: sudo ./.github/workflows/posix-deps-apt.sh
@@ -114,7 +114,7 @@ jobs:
114114
env:
115115
IncludeUwp: 'true'
116116
steps:
117-
- uses: actions/checkout@v2
117+
- uses: actions/checkout@v3
118118
- name: Build CPython
119119
run: .\PCbuild\build.bat -e -d -p Win32
120120
timeout-minutes: 30
@@ -131,7 +131,7 @@ jobs:
131131
env:
132132
IncludeUwp: 'true'
133133
steps:
134-
- uses: actions/checkout@v2
134+
- uses: actions/checkout@v3
135135
- name: Register MSVC problem matcher
136136
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
137137
- name: Build CPython
@@ -150,7 +150,7 @@ jobs:
150150
env:
151151
PYTHONSTRICTEXTENSIONBUILD: 1
152152
steps:
153-
- uses: actions/checkout@v2
153+
- uses: actions/checkout@v3
154154
- name: Prepare homebrew environment variables
155155
run: |
156156
echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
@@ -173,7 +173,7 @@ jobs:
173173
OPENSSL_VER: 1.1.1n
174174
PYTHONSTRICTEXTENSIONBUILD: 1
175175
steps:
176-
- uses: actions/checkout@v2
176+
- uses: actions/checkout@v3
177177
- name: Register gcc problem matcher
178178
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
179179
- name: Install Dependencies
@@ -236,7 +236,7 @@ jobs:
236236
OPENSSL_DIR: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
237237
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
238238
steps:
239-
- uses: actions/checkout@v2
239+
- uses: actions/checkout@v3
240240
- name: Register gcc problem matcher
241241
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
242242
- name: Install Dependencies
@@ -280,7 +280,7 @@ jobs:
280280
PYTHONSTRICTEXTENSIONBUILD: 1
281281
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
282282
steps:
283-
- uses: actions/checkout@v2
283+
- uses: actions/checkout@v3
284284
- name: Register gcc problem matcher
285285
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
286286
- name: Install Dependencies

.github/workflows/build_msi.yml

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

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

4141
build_win_arm64:
4242
name: 'Windows (ARM64) Installer'
4343
runs-on: windows-latest
4444
steps:
45-
- uses: actions/checkout@v2
45+
- uses: actions/checkout@v3
4646
- name: Build CPython installer
4747
run: .\Tools\msi\build.bat -arm64

.github/workflows/doc.yml

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

0 commit comments

Comments
 (0)