Skip to content

Commit 370946b

Browse files
Chore(deps): Bump actions/checkout from 4 to 5 (#645)
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]> Signed-off-by: andy Augustin <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: andy Augustin <[email protected]>
1 parent 5a1514c commit 370946b

13 files changed

+14
-14
lines changed

.github/workflows/actions_template_sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# To use this repository's private action, you must check out the repository
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: actions-template-sync
2222
uses: AndreasAugustin/actions-template-sync@v2
2323
with:

.github/workflows/gh_pages_mk_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
deploy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/setup-python@v6
1616
with:
1717
python-version: 3.x

.github/workflows/lint.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

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: markdownlint
1818
run: make markdownlint
1919
- name: prune

.github/workflows/push_docker.yml

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

3636
steps:
3737
- name: checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
- name: Login to DockerHub
4040
if: github.event_name != 'pull_request'
4141
uses: docker/login-action@v3

.github/workflows/release_please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
id: release
2828
with:
2929
release-type: simple
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: tag major and minor versions
3232
if: ${{ steps.release.outputs.release_created }}
3333
run: |

.github/workflows/release_test_docker_images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- andyaugustin/actions-template-sync
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
with:
3838
lfs: true
3939
fetch-depth: 0

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
name: Shellcheck
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Run shellcheck in container
1818
run: make shellcheck

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# To use this repository's private action, you must check out the repository
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Test action step
2222
id: test
2323
uses: ./ # Uses an action in the root directory
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939
# To use this repository's private action, you must check out the repository
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
- name: Test action step
4343
id: test
4444
uses: ./ # Uses an action in the root directory

.github/workflows/test_github_app.yml

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

2828
- name: Checkout
2929
# https://github.com/actions/checkout#usage
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
token: ${{ steps.source-app-token.outputs.token }}
3333
persist-credentials: false # Don't set this to true as otherwise the token will be stored in the local git config and the run will fail

.github/workflows/test_hooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# To use this repository's private action, you must check out the repository
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Test action step
2222
uses: ./ # Uses an action in the root directory
2323
env:

0 commit comments

Comments
 (0)