Skip to content

Commit 4496a00

Browse files
authored
Use latest actions/checkout@v4 (python#16042)
Looks like recent CI failures are related. Release docs: https://github.com/actions/checkout/releases/tag/v4.0.0
1 parent c712079 commit 4496a00

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'python/mypy'
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- uses: actions/setup-python@v4
1818
with:
1919
python-version: '3.11'

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
TOX_SKIP_MISSING_INTERPRETERS: False
3030
VERIFY_MYPY_ERROR_CODES: 1
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- uses: actions/setup-python@v4
3434
with:
3535
python-version: '3.8'

.github/workflows/mypy_primer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
shard-index: [0, 1, 2, 3, 4]
3434
fail-fast: false
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
with:
3838
path: mypy_to_test
3939
fetch-depth: 0

.github/workflows/sync_typeshed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'python/mypy'
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121
# TODO: use whatever solution ends up working for

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
# Pytest
120120
PYTEST_ADDOPTS: --color=yes
121121
steps:
122-
- uses: actions/checkout@v3
122+
- uses: actions/checkout@v4
123123
- uses: actions/setup-python@v4
124124
with:
125125
python-version: ${{ matrix.python }}
@@ -162,7 +162,7 @@ jobs:
162162
CXX: i686-linux-gnu-g++
163163
CC: i686-linux-gnu-gcc
164164
steps:
165-
- uses: actions/checkout@v3
165+
- uses: actions/checkout@v4
166166
- name: Install 32-bit build dependencies
167167
run: |
168168
sudo dpkg --add-architecture i386 && \

.github/workflows/test_stubgenc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828

29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Setup 🐍 3.8
3232
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)