Skip to content

Commit 741a244

Browse files
build(deps): bump actions/checkout from 4 to 5 (#3243)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jirka Borovec <[email protected]> (cherry picked from commit 5f4b77f)
1 parent 405aaf5 commit 741a244

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/_focus-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
focus: ${{ steps.diff-domains.outputs.focus }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- uses: actions/setup-python@v5
2121

2222
- name: Get PR diff

.github/workflows/ci-integrate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
timeout-minutes: 45
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- name: Set up Python ${{ matrix.python-version }}
5050
uses: actions/setup-python@v5
5151
with:

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
timeout-minutes: 120
7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979
- name: Set up Python ${{ matrix.python-version }}
8080
uses: actions/setup-python@v5
8181
with:

.github/workflows/cmd-rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout pull request
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
token: ${{ secrets.PAT_GHOST }}
1919
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python: ["3.9", "3.10", "3.11"]
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Login to DockerHub
4444
if: env.PUSH_DOCKERHUB == 'true' && github.repository_owner == 'Lightning-AI'
@@ -80,7 +80,7 @@ jobs:
8080
- { python: "3.12", pytorch: "2.8.0", cuda: "12.6.3", ubuntu: "24.04" }
8181
#- { python: "3.13", pytorch: "2.8.0", cuda: "12.6.3", ubuntu: "24.04" }
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v5
8484

8585
- name: Login to DockerHub
8686
uses: docker/login-action@v3

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
target: [html, doctest, linkcheck]
3737
timeout-minutes: 30
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- uses: actions/setup-python@v5
4141
with:
4242
python-version: "3.10"

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
# Uploads repository content to the runner
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: actions/labeler@v5
1414
with:
1515
# The path to the label configuration file.

.github/workflows/publish-pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-22.04
1818
timeout-minutes: 10
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: actions/setup-python@v5
2222
with:
2323
python-version: "3.10"

0 commit comments

Comments
 (0)