Skip to content

Commit e82f5d1

Browse files
chore(deps): update actions/checkout action to v6 (#2910)
* chore(deps): update actions/checkout action to v6 * Update mypy_primer.yml --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sobolevn <mail@sobolevn.me>
1 parent bd4a754 commit e82f5d1

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/mypy_primer.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
shard-index: [0] # e.g. change this to [0, 1, 2] and --num-shards below to 3
2121
fail-fast: false
2222
steps:
23-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
23+
- uses: actions/checkout@v6
2424
with:
2525
path: django-stubs_to_test
2626
fetch-depth: 0
27-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: "3.12"
3030
- name: Install dependencies
@@ -64,15 +64,15 @@ jobs:
6464
run: |
6565
echo ${{ github.event.pull_request.number }} | tee pr_number.txt
6666
- name: Upload mypy_primer diff + PR number
67-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
67+
uses: actions/upload-artifact@v5
6868
if: ${{ matrix.shard-index == 0 }}
6969
with:
7070
name: mypy_primer_diffs-${{ matrix.shard-index }}
7171
path: |
7272
diff_${{ matrix.shard-index }}.txt
7373
pr_number.txt
7474
- name: Upload mypy_primer diff
75-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
75+
uses: actions/upload-artifact@v5
7676
if: ${{ matrix.shard-index != 0 }}
7777
with:
7878
name: mypy_primer_diffs-${{ matrix.shard-index }}
@@ -86,7 +86,7 @@ jobs:
8686
contents: read
8787
steps:
8888
- name: Merge artifacts
89-
uses: actions/upload-artifact/merge@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
89+
uses: actions/upload-artifact/merge@v5
9090
with:
9191
name: mypy_primer_diffs
9292
pattern: mypy_primer_diffs-*

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: astral-sh/setup-uv@v7
2121
with:
2222
python-version: "3.13"
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
- name: Build ext package
@@ -41,7 +41,7 @@ jobs:
4141
uses: astral-sh/setup-uv@v7
4242
with:
4343
python-version: "3.13"
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 0
4747
- name: Build package

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
python-version: ['3.10', '3.11', '3.12', '3.13']
3030
fail-fast: false
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- name: Install uv
3434
uses: astral-sh/setup-uv@v7
3535
- name: Set up Python ${{ matrix.python-version }}
@@ -60,7 +60,7 @@ jobs:
6060
shard: [0, 1, 2, 3]
6161
fail-fast: false
6262
steps:
63-
- uses: actions/checkout@v5
63+
- uses: actions/checkout@v6
6464
- name: Setup system dependencies
6565
run: |
6666
sudo apt-get update
@@ -87,7 +87,7 @@ jobs:
8787
shard: [0, 1, 2, 3]
8888
fail-fast: false
8989
steps:
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
- name: Setup system dependencies
9292
run: |
9393
sudo apt-get update
@@ -118,7 +118,7 @@ jobs:
118118
python-version: ['3.12', '3.13']
119119
fail-fast: false
120120
steps:
121-
- uses: actions/checkout@v5
121+
- uses: actions/checkout@v6
122122
- name: Setup system dependencies
123123
run: |
124124
sudo apt-get update
@@ -144,7 +144,7 @@ jobs:
144144
python-version: ['3.12'] # TODO: enable on other versions
145145
fail-fast: false
146146
steps:
147-
- uses: actions/checkout@v5
147+
- uses: actions/checkout@v6
148148
- name: Install uv
149149
uses: astral-sh/setup-uv@v7
150150
- name: Set up Python ${{ matrix.python-version }}
@@ -180,7 +180,7 @@ jobs:
180180
python-version: ['3.10', '3.11', '3.12', '3.13']
181181
django-version: ['5.0', '5.1', '5.2']
182182
steps:
183-
- uses: actions/checkout@v5
183+
- uses: actions/checkout@v6
184184
- name: Setup system dependencies
185185
run: |
186186
sudo apt-get update
@@ -201,7 +201,7 @@ jobs:
201201
build-and-check:
202202
runs-on: ubuntu-latest
203203
steps:
204-
- uses: actions/checkout@v5
204+
- uses: actions/checkout@v6
205205
with:
206206
fetch-tags: true
207207
- name: Install uv & Python

0 commit comments

Comments
 (0)