Skip to content

Commit 1d2bb7b

Browse files
Bump actions/checkout from 4 to 6 in /.github/workflows
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 00547bc commit 1d2bb7b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
env:
1010
SHELLCHECK_OPTS: -x
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Run ShellCheck
1414
uses: ludeeus/action-shellcheck@master

.github/workflows/trigger-deployments.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
on_main: ${{ steps.contains_tag.outputs.retval }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
fetch-tags: true
@@ -33,7 +33,7 @@ jobs:
3333
KNOWN_HOSTS: ${{ secrets.KNOWN_HOSTS }}
3434
steps:
3535
- name: Check out repository code to access trigger_deployment.sh
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
- run: ./trigger_deployment.sh
3838
- uses: artiz/[email protected]
3939
with:
@@ -57,7 +57,7 @@ jobs:
5757
KNOWN_HOSTS: ${{ secrets.KNOWN_HOSTS }}
5858
steps:
5959
- name: Check out repository code to access trigger_deployment.sh
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v6
6161
- run: ./trigger_deployment.sh
6262
- uses: artiz/[email protected]
6363
with:

.github/workflows/update-service-image.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
environment: build
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
ssh-key: "${{ secrets.SSH_PUSH_DEPLOY_PRIVATE_KEY }}"
1919
- run: git config --global user.email "[email protected]"

0 commit comments

Comments
 (0)