Skip to content

Commit b04784d

Browse files
Bump actions/checkout from 6 to 7 in the actions group (#693)
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3986977 commit b04784d

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/call_linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
lint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/checkout@v7
1212
with:
1313
ref: ${{ github.event.pull_request.head.sha || github.ref }}
1414
- uses: actions/setup-python@v6

.github/workflows/call_publish_result.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
PYTHON: '3.14'
100100
steps:
101101
# initialize the reposititory
102-
- uses: actions/checkout@v6
102+
- uses: actions/checkout@v7
103103

104104
# get coverage only for 1 job
105105
- name: Get data

.github/workflows/call_test_minimal.yml

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

3636
steps:
3737
# Checkout to the branch for getting the right code
38-
- uses: actions/checkout@v6
38+
- uses: actions/checkout@v7
3939
with:
4040
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4141

.github/workflows/call_test_package.yml

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

3636
steps:
3737
# Checkout to the branch for getting the right code
38-
- uses: actions/checkout@v6
38+
- uses: actions/checkout@v7
3939
with:
4040
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4141

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
BRANCH_NAME: ${{ steps.get_branch_name.outputs.BRANCH_NAME }}
3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v6
33+
uses: actions/checkout@v7
3434
with:
3535
fetch-depth: 3
3636
ref: ${{ github.event.pull_request.head.sha || github.ref }}

.github/workflows/ci_maintenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
BRANCH_NAME: ${{ steps.get_branch_name.outputs.BRANCH_NAME }}
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131
with:
3232
fetch-depth: 3
3333
ref: ${{ github.event.pull_request.head.sha || github.ref }}

.github/workflows/ci_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
COMMIT_MSG: ${{ steps.get_commit_message.outputs.COMMIT_MSG }}
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v6
28+
uses: actions/checkout@v7
2929
with:
3030
fetch-depth: 3
3131
ref: ${{ github.event.pull_request.head.sha || github.ref }}

0 commit comments

Comments
 (0)