Skip to content

Commit 9afdcf8

Browse files
Update actions/setup-python action to v6
1 parent 3cbfa1c commit 9afdcf8

File tree

7 files changed

+7
-7
lines changed

7 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
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
ref: ${{ github.head_ref }}
1313
- name: Setup Python
14-
uses: actions/setup-python@v1
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: 3.8
1717
- name: Install Build Tools

.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@v2
1616
- name: Setup Python
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: 3.8
2020
- name: Install Build Tools

.github/workflows/publish_alpha.yml

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

.github/workflows/publish_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ref: dev
1414
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1515
- name: Setup Python
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: 3.8
1919
- name: Install Build Tools

.github/workflows/publish_major.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ref: dev
1414
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1515
- name: Setup Python
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: 3.8
1919
- name: Install Build Tools

.github/workflows/publish_minor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ref: dev
1414
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1515
- name: Setup Python
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: 3.8
1919
- name: Install Build Tools

.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@v2
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)