Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2453f2c

Browse filesBrowse files
Bump the actions group across 1 directory with 4 updates (#29214)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent eeff7f3 commit 2453f2c
Copy full SHA for 2453f2c

File tree

Expand file treeCollapse file tree

9 files changed

+14
-14
lines changed
Filter options
Expand file treeCollapse file tree

9 files changed

+14
-14
lines changed

‎.github/workflows/check-changelog.yml

Copy file name to clipboardExpand all lines: .github/workflows/check-changelog.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/check-sdist.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/cuda-gpu-ci.yml
+2-2Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/labeler-title-regex.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/lint.yml
+2-2Lines changed: 2 additions & 2 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

@@ -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

‎.github/workflows/publish_pypi.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish_pypi.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/update-lock-files.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/update_tracking_issue.yml
+1-1Lines 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

Copy file name to clipboardExpand all lines: .github/workflows/wheels.yml
+4-4Lines changed: 4 additions & 4 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
@@ -198,7 +198,7 @@ jobs:
198198

199199
steps:
200200
- name: Checkout scikit-learn
201-
uses: actions/checkout@v3
201+
uses: actions/checkout@v4
202202

203203
- name: Setup Python
204204
uses: actions/setup-python@v5
@@ -232,7 +232,7 @@ jobs:
232232

233233
steps:
234234
- name: Checkout scikit-learn
235-
uses: actions/checkout@v3
235+
uses: actions/checkout@v4
236236

237237
- name: Download artifacts
238238
uses: actions/download-artifact@v4

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.