Skip to content

Commit db4f7d0

Browse files
Bump actions/checkout from 4.1.2 to 4.1.7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@9bb5618...692973e) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0954786 commit db4f7d0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/workflow-generate-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
- id: checkout_latest_workflow
4949
name: Checkout Latest
5050
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.commit_resources == 'true') || (github.event_name == 'push' && inputs.commit_resources == true)
51-
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
51+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5252
with:
5353
persist-credentials: false
5454
submodules: recursive
5555
# use this for overything else (i.e., pull requests) where publication is not needed
5656
- name: Checkout Latest
5757
if: steps.checkout_latest_workflow.conclusion == 'skipped'
58-
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
58+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5959
with:
6060
submodules: recursive
6161
- name: Setup Swap Space

.github/workflows/workflow-validate-repo-markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
issues: write
2727
steps:
2828
# use this for pulls where checkout is anonymous
29-
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
29+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3030
with:
3131
submodules: recursive
3232
# Setup runtime environment

.github/workflows/workflow-validate-website-content.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
issues: write
3131
steps:
3232
- name: Checkout Latest
33-
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
33+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3434
with:
3535
fetch-depth: 0 # this ensures that the tag and commit history are available
3636
- name: Checkout git ref of published website content
37-
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
37+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3838
with:
3939
ref: ${{ inputs.site_git_ref }}
4040
path: ${{ inputs.site_git_ref_path }}

0 commit comments

Comments
 (0)