Skip to content

Commit 6508cf5

Browse files
authored
Merge pull request #1027 from MilesCranmer/dependabot/github_actions/actions/setup-python-6
chore(deps): bump actions/setup-python from 5 to 6
2 parents 85c614a + 8ed1296 commit 6508cf5

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
5959
cache-packages: false
6060
- name: "Set up Python"
61-
uses: actions/setup-python@v5
61+
uses: actions/setup-python@v6
6262
with:
6363
python-version: ${{ matrix.python-version }}
6464
cache: pip
@@ -101,7 +101,7 @@ jobs:
101101
julia-version: '1.10'
102102
steps:
103103
- uses: actions/checkout@v5
104-
- uses: actions/setup-python@v5
104+
- uses: actions/setup-python@v6
105105
- name: "Install PySR"
106106
run: |
107107
python -m pip install --upgrade pip
@@ -165,7 +165,7 @@ jobs:
165165
steps:
166166
- uses: actions/checkout@v5
167167
- name: "Set up Python"
168-
uses: actions/setup-python@v5
168+
uses: actions/setup-python@v6
169169
with:
170170
python-version: ${{ matrix.python-version }}
171171
cache: pip
@@ -195,7 +195,7 @@ jobs:
195195
steps:
196196
- uses: actions/checkout@v5
197197
- name: "Set up Python"
198-
uses: actions/setup-python@v5
198+
uses: actions/setup-python@v6
199199
with:
200200
python-version: ${{ matrix.python-version }}
201201
cache: pip
@@ -219,7 +219,7 @@ jobs:
219219

220220
steps:
221221
- uses: actions/checkout@v5
222-
- uses: actions/setup-python@v5
222+
- uses: actions/setup-python@v6
223223
with:
224224
python-version: ${{ matrix.python-version }}
225225
cache: pip

.github/workflows/CI_Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
4040
cache-packages: false
4141
- name: "Set up Python"
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
cache: pip

.github/workflows/CI_large_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
version: ${{ matrix.julia-version }}
3636
- name: "Set up Python"
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: "Install PySR"

.github/workflows/CI_mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cache-name: ${{ matrix.os }}-test-${{ matrix.julia-version }}-${{ matrix.python-version }}
4040
cache-packages: false
4141
- name: "Set up Python"
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
cache: pip

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v5
2424
- name: "Set up Python"
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: 3.13
2828
cache: pip

.github/workflows/pypi_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: "Checkout"
1818
uses: actions/checkout@v5
1919
- name: "Set up Python"
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: 3.10.8
2323
- name: "Install building tools"

.github/workflows/update_backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v5
11-
- uses: actions/setup-python@v5
11+
- uses: actions/setup-python@v6
1212
with:
1313
python-version: 3.13
1414
cache: pip

0 commit comments

Comments
 (0)