Skip to content

Commit a5aff1f

Browse files
Bump actions/checkout from 4 to 5
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] <support@github.com>
1 parent a83087e commit a5aff1f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
lint:
1313
runs-on: "ubuntu-latest"
1414
steps:
15-
- uses: "actions/checkout@v4"
15+
- uses: "actions/checkout@v5"
1616
- name: "Set up Python"
1717
uses: "actions/setup-python@v5"
1818
with:
@@ -34,7 +34,7 @@ jobs:
3434
needs:
3535
- "lint"
3636
steps:
37-
- uses: "actions/checkout@v4"
37+
- uses: "actions/checkout@v5"
3838
- name: "Set up Python"
3939
uses: "actions/setup-python@v5"
4040
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: "ubuntu-latest"
1212
if: "github.repository == 'pulp/squeezer'"
1313
steps:
14-
- uses: "actions/checkout@v4"
14+
- uses: "actions/checkout@v5"
1515
- name: "Set up Python"
1616
uses: "actions/setup-python@v5"
1717
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: "Release"
1010
runs-on: "ubuntu-latest"
1111
steps:
12-
- uses: "actions/checkout@v4"
12+
- uses: "actions/checkout@v5"
1313
with:
1414
token: "${{ secrets.RELEASE_TOKEN }}"
1515
- name: "Set up Python"

.github/workflows/release_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
create-release-branch:
88
runs-on: "ubuntu-latest"
99
steps:
10-
- uses: "actions/checkout@v4"
10+
- uses: "actions/checkout@v5"
1111
- name: "Set up Python"
1212
uses: "actions/setup-python@v5"
1313
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
image_tag: "nightly"
3333
lower_bounds: true
3434
steps:
35-
- uses: "actions/checkout@v4"
35+
- uses: "actions/checkout@v5"
3636
- uses: "actions/cache@v4"
3737
with:
3838
path: "~/.cache/pip"

0 commit comments

Comments
 (0)