Skip to content

Commit 2f20b45

Browse files
build(deps): 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 755be9b commit 2f20b45

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@v2
6565
- name: Install Dependencies
6666
run: sudo ./.github/workflows/posix-deps-apt.sh
@@ -111,7 +111,7 @@ jobs:
111111
env:
112112
IncludeUwp: 'true'
113113
steps:
114-
- uses: actions/checkout@v2
114+
- uses: actions/checkout@v3
115115
- name: Build CPython
116116
run: .\PCbuild\build.bat -e -d -p Win32
117117
timeout-minutes: 30
@@ -128,7 +128,7 @@ jobs:
128128
env:
129129
IncludeUwp: 'true'
130130
steps:
131-
- uses: actions/checkout@v2
131+
- uses: actions/checkout@v3
132132
- name: Register MSVC problem matcher
133133
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
134134
- name: Build CPython
@@ -147,7 +147,7 @@ jobs:
147147
env:
148148
PYTHONSTRICTEXTENSIONBUILD: 1
149149
steps:
150-
- uses: actions/checkout@v2
150+
- uses: actions/checkout@v3
151151
- name: Prepare homebrew environment variables
152152
run: |
153153
echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
@@ -170,7 +170,7 @@ jobs:
170170
OPENSSL_VER: 1.1.1n
171171
PYTHONSTRICTEXTENSIONBUILD: 1
172172
steps:
173-
- uses: actions/checkout@v2
173+
- uses: actions/checkout@v3
174174
- name: Register gcc problem matcher
175175
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
176176
- name: Install Dependencies
@@ -233,7 +233,7 @@ jobs:
233233
OPENSSL_DIR: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
234234
LD_LIBRARY_PATH: ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
235235
steps:
236-
- uses: actions/checkout@v2
236+
- uses: actions/checkout@v3
237237
- name: Register gcc problem matcher
238238
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
239239
- name: Install Dependencies
@@ -277,7 +277,7 @@ jobs:
277277
PYTHONSTRICTEXTENSIONBUILD: 1
278278
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
279279
steps:
280-
- uses: actions/checkout@v2
280+
- uses: actions/checkout@v3
281281
- name: Register gcc problem matcher
282282
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
283283
- 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)