Skip to content

Commit dc59bef

Browse files
chore(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#413)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 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>
1 parent a874e55 commit dc59bef

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# If you do not check out your code, Copilot will do this for you.
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v5.0.0
29+
uses: actions/checkout@v6.0.0
3030
with:
3131
persist-credentials: false
3232

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5.0.0
17+
- uses: actions/checkout@v6.0.0
1818
with:
1919
persist-credentials: false
2020
- name: Build the Docker image

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
statuses: write
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@v5.0.0
21+
uses: actions/checkout@v6.0.0
2222
with:
2323
# Full git history is needed to get a proper
2424
# list of changed files within `super-linter`

.github/workflows/major-version-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout Repo
20-
uses: actions/checkout@v5.0.0
20+
uses: actions/checkout@v6.0.0
2121
with:
2222
fetch-tags: true
2323
ref: ${{ github.event.inputs.TAG_NAME || github.ref }}

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
python-version: [3.11, 3.12, 3.13]
2121
steps:
22-
- uses: actions/checkout@v5.0.0
22+
- uses: actions/checkout@v6.0.0
2323
with:
2424
persist-credentials: false
2525
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/scorecard.yml

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

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@v5.0.0
28+
uses: actions/checkout@v6.0.0
2929
with:
3030
persist-credentials: false
3131

.github/workflows/use-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
packages: read
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v5.0.0
22+
uses: actions/checkout@v6.0.0
2323
with:
2424
persist-credentials: false
2525
- name: Run stale_repos tool

0 commit comments

Comments
 (0)