Skip to content

Commit 9d08e2d

Browse files
Update actions/setup-python action to v6
1 parent aabccde commit 9d08e2d

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/autoformat-pixeebot-prs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v5
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.13"
2222

.github/workflows/codemod_pygoat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Check out codemodder
2525
uses: actions/checkout@v5
2626
- name: Set Up Python
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.13'
3030
cache: 'pip'

.github/workflows/deploy_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 5
1313
steps:
1414
- name: Set Up Python
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.13'
1818
- name: Check out code

.github/workflows/integration_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check out code
2828
uses: actions/checkout@v5
2929
- name: Set Up Python
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
cache: 'pip'

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Check out code
2525
uses: actions/checkout@v5
2626
- name: Set Up Python
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.13'
3030
cache: 'pip'
@@ -42,5 +42,5 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- uses: actions/checkout@v5
45-
- uses: actions/setup-python@v5
45+
- uses: actions/setup-python@v6
4646
- uses: pre-commit/action@v3.0.1

.github/workflows/pre-commit-autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
15-
- uses: actions/setup-python@v5
15+
- uses: actions/setup-python@v6
1616
- uses: browniebroke/pre-commit-autoupdate-action@main
1717
- uses: peter-evans/create-pull-request@v7
1818
with:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Check out code
2929
uses: actions/checkout@v5
3030
- name: Set Up Python
31-
uses: actions/setup-python@v5
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: '3.13'
3434
cache: 'pip'
@@ -47,7 +47,7 @@ jobs:
4747
- name: Check out code
4848
uses: actions/checkout@v5
4949
- name: Set Up Python
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6
5151
with:
5252
python-version: '3.13'
5353
cache: 'pip'
@@ -67,7 +67,7 @@ jobs:
6767
- name: Check out code
6868
uses: actions/checkout@v5
6969
- name: Set Up Python
70-
uses: actions/setup-python@v5
70+
uses: actions/setup-python@v6
7171
with:
7272
python-version: ${{ matrix.python-version }}
7373
cache: 'pip'

0 commit comments

Comments
 (0)