8000 Bump the actions group with 6 updates · scikit-learn/scikit-learn@11857ea · GitHub
[go: up one dir, main page]

Skip to content

Commit 11857ea

Browse files
Bump the actions group with 6 updates
Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `6` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `peter-evans/create-pull-request` from 5 to 6 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ef14efd commit 11857ea

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.github/workflows/check-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: |
1717
echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> $GITHUB_ENV
1818
echo "TAGGED_MILESTONE=${{ github.event.pull_request.milestone.title }}" >> $GITHUB_ENV
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: '0'
2222
- name: Check the changelog entry

.github/workflows/check-sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
1616
with:
1717
python-version: '3.9'

.github/workflows/cuda-gpu-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
group: cuda-gpu-runner-group
1515
name: Run Array API unit tests
1616
steps:
17-
- uses: actions/setup-python@v4
17+
- uses: actions/setup-python@v5
1818
with:
1919
python-version: '3.12'
2020
- name: Checkout main repository
@@ -25,7 +25,7 @@ jobs:
2525
echo "Checked out commit $(git rev-parse HEAD)"
2626
- name: Cache conda environment
2727
id: cache-conda
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ~/conda
3131
key: ${{ runner.os }}-build-${{ hashFiles('build_tools/github/create_gpu_environment.sh') }}-${{ hashFiles('build_tools/github/pylatest_conda_forge_cuda_array-api_linux-64_conda.lock') }}

.github/workflows/labeler-title-regex.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
labeler:
1616
runs-on: ubuntu-20.04
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.9'

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626

@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Upload Artifact
5454
if: always()
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: lint-log
5858
path: |
@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: Set up Python
7878
uses: actions/setup-python@v5
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Download artifact
8686
id: download-artifact
87-
uses: actions/download-artifact@v3
87+
uses: actions/download-artifact@v4
8888
with:
8989
name: lint-log
9090

.github/workflows/publish_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# IMPORTANT: this permission is mandatory for trusted publishing
1919
id-token: write
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.8'

.github/workflows/update-lock-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Create Pull Request
4848
id: cpr
49-
uses: peter-evans/create-pull-request@v5
49+
uses: peter-evans/create-pull-request@v6
5050
with:
5151
token: ${{ secrets.BOT_GITHUB_TOKEN }}
5252
push-to-fork: scikit-learn-bot/scikit-learn

.github/workflows/update_tracking_issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
if: github.repository == 'scikit-learn/scikit-learn' && github.event_name == 'schedule'
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- uses: actions/setup-python@v5
3131
with:
3232
python-version: '3.9'

.github/workflows/wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout scikit-learn
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
ref: ${{ github.event.pull_request.head.sha }}
3838

@@ -117,7 +117,7 @@ jobs:
117117

118118
steps:
119119
- name: Checkout scikit-learn
120-
uses: actions/checkout@v3
120+
uses: actions/checkout@v4
121121

122122
- name: Setup Python
123123
uses: actions/setup-python@v5
@@ -175,7 +175,7 @@ jobs:
175175
run: bash build_tools/wheels/build_wheels.sh
176176

177177
- name: Store artifacts
178-
uses: actions/upload-artifact@v3
178+
uses: actions/upload-artifact@v4
179179
with:
180180
path: wheelhouse/*.whl
181181

@@ -197,7 +197,7 @@ jobs:
197197

198198
steps:
199199
- name: Checkout scikit-learn
200-
uses: actions/checkout@v3
200+
uses: actions/checkout@v4
201201

202202
- name: Setup Python
203203
uses: actions/setup-python@v5
@@ -215,7 +215,7 @@ jobs:
215215
SKLEARN_SKIP_NETWORK_TESTS: 1
216216

217217
- name: Store artifacts
218-
uses: actions/upload-artifact@v3
218+
uses: actions/upload-artifact@v4
219219
with:
220220
path: dist/*.tar.gz
221221

@@ -230,10 +230,10 @@ jobs:
230230

231231
steps:
232232
- name: Checkout scikit-learn
233-
uses: actions/checkout@v3
233+
uses: actions/checkout@v4
234234

235235
- name: Download artifacts
236-
uses: actions/download-artifact@v3
236+
uses: actions/download-artifact@v4
237237
with:
238238
path: dist
239239

0 commit comments

Comments
 (0)
0