Skip to content

Commit 7103d1f

Browse files
chore(deps): bump actions/checkout from 4 to 6 in /actions/verify-json (#644)
* chore(deps): bump actions/checkout from 4 to 6 in /actions/verify-json 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] <support@github.com> * chore: update checkout action to specific commit version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Boris Lavrishchev <boris.lavrishchev.qubership@gmail.com>
1 parent 2b636e7 commit 7103d1f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

actions/verify-json/action.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,17 @@ runs:
2323
using: "composite"
2424
steps:
2525
- name: "Checkout code"
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
27+
with:
28+
persist-credentials: false
2729

2830
- name: "Install tools"
31+
shell: bash
2932
run: |
3033
sudo apt install -y python3-jsonschema
3134
3235
- name: "Validate"
36+
shell: bash
3337
id: validate
3438
run: |
3539
set +e

0 commit comments

Comments
 (0)