Skip to content

Commit bd9e688

Browse files
Bump actions/setup-python from 5 to 6
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 53382d8 commit bd9e688

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/cron-ngc-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Set up Python 3.9
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: '3.9'
2525
- name: cache weekly timestamp

.github/workflows/docker.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
2929
- name: Set up Python 3.9
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: '3.9'
3333
- shell: bash

.github/workflows/pythonapp-min.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434
- name: Set up Python 3.9
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: '3.9'
3838
- name: Prepare pip wheel
@@ -81,7 +81,7 @@ jobs:
8181
steps:
8282
- uses: actions/checkout@v4
8383
- name: Set up Python ${{ matrix.python-version }}
84-
uses: actions/setup-python@v5
84+
uses: actions/setup-python@v6
8585
with:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Prepare pip wheel
@@ -129,7 +129,7 @@ jobs:
129129
steps:
130130
- uses: actions/checkout@v4
131131
- name: Set up Python 3.9
132-
uses: actions/setup-python@v5
132+
uses: actions/setup-python@v6
133133
with:
134134
python-version: '3.9'
135135
- name: Prepare pip wheel

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v4
3232
- name: Set up Python 3.9
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: '3.9'
3636
- name: cache weekly timestamp
@@ -72,7 +72,7 @@ jobs:
7272
disk-root: "D:"
7373
- uses: actions/checkout@v4
7474
- name: Set up Python 3.9
75-
uses: actions/setup-python@v5
75+
uses: actions/setup-python@v6
7676
with:
7777
python-version: '3.9'
7878
- name: Prepare pip wheel
@@ -133,7 +133,7 @@ jobs:
133133
with:
134134
fetch-depth: 0
135135
- name: Set up Python 3.9
136-
uses: actions/setup-python@v5
136+
uses: actions/setup-python@v6
137137
with:
138138
python-version: '3.9'
139139
- name: cache weekly timestamp
@@ -215,7 +215,7 @@ jobs:
215215
steps:
216216
- uses: actions/checkout@v4
217217
- name: Set up Python 3.9
218-
uses: actions/setup-python@v5
218+
uses: actions/setup-python@v6
219219
with:
220220
python-version: '3.9'
221221
- name: cache weekly timestamp

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install setuptools
@@ -98,7 +98,7 @@ jobs:
9898
with:
9999
fetch-depth: 0
100100
- name: Set up Python 3.9
101-
uses: actions/setup-python@v5
101+
uses: actions/setup-python@v6
102102
with:
103103
python-version: '3.9'
104104
- shell: bash

.github/workflows/setupapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
fetch-depth: 0
8989
- name: Set up Python ${{ matrix.python-version }}
90-
uses: actions/setup-python@v5
90+
uses: actions/setup-python@v6
9191
with:
9292
python-version: ${{ matrix.python-version }}
9393
- name: cache weekly timestamp
@@ -128,7 +128,7 @@ jobs:
128128
runs-on: ubuntu-latest
129129
steps:
130130
- name: Set up Python 3.9
131-
uses: actions/setup-python@v5
131+
uses: actions/setup-python@v6
132132
with:
133133
python-version: '3.9'
134134
- name: cache weekly timestamp

.github/workflows/weekly-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set up Python 3.9
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: '3.9'
1919
- name: cache weekly timestamp
@@ -47,7 +47,7 @@ jobs:
4747
ref: dev
4848
fetch-depth: 0
4949
- name: Set up Python 3.9
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6
5151
with:
5252
python-version: '3.9'
5353
- name: Install setuptools

0 commit comments

Comments
 (0)