Skip to content

Commit 8b78094

Browse files
Update actions/setup-python action to v6 (#15)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7366ea1 commit 8b78094

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v6
2525
- name: Setup Python
26-
uses: actions/setup-python@v1
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install skill

.github/workflows/license_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v6
1616
- name: Setup Python
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: "3.14"
2020
- name: Install Build Tools

.github/workflows/publish_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ref: dev
2525
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
2626
- name: Setup Python
27-
uses: actions/setup-python@v1
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: "3.14"
3030
- name: Install Build Tools

.github/workflows/release_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
ref: dev
4545
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
4646
- name: Setup Python
47-
uses: actions/setup-python@v1
47+
uses: actions/setup-python@v6
4848
with:
4949
python-version: "3.14"
5050
- name: Install Build Tools
@@ -73,7 +73,7 @@ jobs:
7373
ref: dev
7474

7575
- name: Setup Python
76-
uses: actions/setup-python@v2
76+
uses: actions/setup-python@v6
7777
with:
7878
python-version: '3.14'
7979

.github/workflows/sync_tx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ref: dev
1717
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1818
- name: Setup Python
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: 3.14
2222

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v6
4242
- name: Set up python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v2
43+
uses: actions/setup-python@v6
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646
- name: Install System Dependencies

0 commit comments

Comments
 (0)