Skip to content

Commit 2b49de5

Browse files
chore(deps): Update actions/checkout action to v4.2.2 (#759)
1 parent 87b9f80 commit 2b49de5

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.github/workflows/build-image-test.yaml

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

1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/build-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
- name: Set up QEMU
2020
# yamllint disable-line rule:line-length
2121
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3.0

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ jobs:
111111
with:
112112
python-version: 3.13
113113
- name: Check out src from Git
114-
uses: actions/checkout@v4
114+
# yamllint disable-line rule:line-length
115+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
115116
with:
116117
fetch-depth: 0
117118
- name: >-
@@ -275,7 +276,8 @@ jobs:
275276
python-version: 3.13
276277

277278
- name: Grab the source from Git
278-
uses: actions/checkout@v4
279+
# yamllint disable-line rule:line-length
280+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
279281
with:
280282
fetch-depth: 0
281283

.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
pre-commit:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
11+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1212
- run: >-
1313
git fetch --no-tags --prune --depth=1 origin
1414
+refs/heads/*:refs/remotes/origin/*
@@ -44,7 +44,7 @@ jobs:
4444
> hadolint
4545
&& chmod +x hadolint && sudo mv hadolint /usr/bin/
4646
# Need to success pre-commit fix push
47-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
47+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4848
with:
4949
fetch-depth: 0
5050
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424
with:
2525
persist-credentials: false
2626
fetch-depth: 0

.github/workflows/reusable-tox.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ jobs:
166166
- name: Grab the source from Git
167167
if: >-
168168
contains(fromJSON('["pre-commit", "spellcheck-docs"]'), inputs.toxenv)
169-
uses: actions/checkout@v4
169+
# yamllint disable-line rule:line-length
170+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
170171
with:
171172
ref: ${{ github.event.inputs.release-committish }}
172173
- name: Retrieve the project source from an sdist inside the GHA artifact

0 commit comments

Comments
 (0)