Skip to content

Commit 1940ec6

Browse files
ci(deps): update actions/checkout action to v4.2.0 (#108)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | minor | `v4.1.7` -> `v4.2.0` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4.2.0`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v420) [Compare Source](https://github.com/actions/checkout/compare/v4.1.7...v4.2.0) - Add Ref and Commit outputs by [@&#8203;lucacome](https://github.com/lucacome) in [https://github.com/actions/checkout/pull/1180](https://github.com/actions/checkout/pull/1180) - Dependency updates by [@&#8203;dependabot-](https://github.com/dependabot-) [https://github.com/actions/checkout/pull/1777](https://github.com/actions/checkout/pull/1777), [https://github.com/actions/checkout/pull/1872](https://github.com/actions/checkout/pull/1872) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Hapag-Lloyd/Workflow-Templates). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b10c1b5 commit 1940ec6

11 files changed

+18
-18
lines changed

.github/workflows/default_linter_callable.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
if: needs.find-changes-for-shell-output.outputs.markdown == 'true'
7676
needs: find-changes-for-shell-output
7777
steps:
78-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
78+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
7979

8080
- name: Validate Markdown file
8181
run: |
@@ -92,7 +92,7 @@ jobs:
9292
image: rhysd/actionlint:1.7.2@sha256:89d3f90f82781dee3c8724651129634b08cf2241bbd67fcd02a1c5198119fc5e
9393
options: --cpus 1 --user root
9494
steps:
95-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
95+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9696

9797
- name: Validate Github workflows
9898
run: |
@@ -105,7 +105,7 @@ jobs:
105105
needs: find-changes-for-shell-output
106106
if: needs.find-changes-for-shell-output.outputs.yaml == 'true'
107107
steps:
108-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
108+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
109109

110110
- name: yaml-lint
111111
uses: ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c # v3.1.1
@@ -120,7 +120,7 @@ jobs:
120120
if: needs.find-changes.outputs.json == 'true'
121121
needs: find-changes
122122
steps:
123-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
123+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
124124

125125
- name: Run JSON Lint
126126
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/json-lint/master/pipeline.sh)
@@ -134,7 +134,7 @@ jobs:
134134
matrix:
135135
file: ${{ fromJson(needs.find-changes.outputs.renovate-config_files) }}
136136
steps:
137-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
137+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
138138

139139
- uses: suzuki-shunsuke/github-action-renovate-config-validator@36a15b83e37bf3221dc9c02ff5ffdaefb51ca1cf # v1.1.0
140140
with:
@@ -144,7 +144,7 @@ jobs:
144144
name: Check shell scripts
145145
runs-on: ubuntu-latest
146146
steps:
147-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
147+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
148148

149149
- name: ShellCheck
150150
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
@@ -158,7 +158,7 @@ jobs:
158158
matrix:
159159
file: ${{ fromJson(needs.find-changes.outputs.dockerfile_files) }}
160160
steps:
161-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
161+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
162162
- name: Lint Dockerfile
163163
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0
164164
with:

.github/workflows/default_release_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
24+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2525
with:
2626
fetch-depth: 0
2727

.github/workflows/default_release_dry_run_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout dry branch
24-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
24+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2525
with:
2626
ref: release-dry-run
2727

.github/workflows/default_slash_ops_command_help_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: "ChatOps: /help"
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
20+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2121

2222
- name: Choose maintainer
2323
id: vars

.github/workflows/default_spelling_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
cspell:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
17+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1818

1919
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed # v6.8.1
2020
with:

.github/workflows/docker_dockerhub_release_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
IMAGE_NAME: hlag/${{ inputs.image-name }}
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
40+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4141
- name: Configure Tags
4242
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
4343
id: meta

.github/workflows/maven_java_callable.yml

+1-1
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
17+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1818
- name: Set up JDK 21
1919
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
2020
with:

.github/workflows/maven_release_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3333
with:
3434
fetch-depth: 0
3535

.github/workflows/maven_release_dry_run_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout dry branch
32-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3333
with:
3434
ref: release-dry-run
3535

.github/workflows/terraform_module_terraform_callable.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run:
3232
working-directory: ${{ matrix.directories }}
3333
steps:
34-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3535

3636
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
3737
with:
@@ -46,7 +46,7 @@ jobs:
4646
tflint:
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
49+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5050

5151
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
5252
name: Cache plugin dir

.github/workflows/terraform_module_terraform_tfsec_callable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Clone repo
27-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
27+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2828

2929
- name: Run tfsec
3030
uses: tfsec/tfsec-sarif-action@21ded20e8ca120cd9d3d6ab04ef746477542a608 # v0.1.4

0 commit comments

Comments
 (0)