Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Update actions/checkout action to v4.2.2 #759

Merged
merged 4 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-image-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up QEMU
# yamllint disable-line rule:line-length
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@
with:
python-version: 3.13
- name: Check out src from Git
uses: actions/checkout@v4
# yamllint disable-line rule:line-length
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 114 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / pre-commit

114:71 [comments] too few spaces before comment

Check warning on line 114 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / pre-commit

114:71 [comments] too few spaces before comment

Check warning on line 114 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / pre-commit

114:71 [comments] too few spaces before comment

Check warning on line 114 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / 🧹 Linters / pre-commit@🐍3.13@ubuntu-latest

114:71 [comments] too few spaces before comment
MaxymVlasov marked this conversation as resolved.
Show resolved Hide resolved
MaxymVlasov marked this conversation as resolved.
Show resolved Hide resolved
with:
fetch-depth: 0
- name: >-
Expand Down Expand Up @@ -273,7 +274,8 @@
python-version: 3.13

- name: Grab the source from Git
uses: actions/checkout@v4
# yamllint disable-line rule:line-length
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 278 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / pre-commit

278:71 [comments] too few spaces before comment

Check warning on line 278 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / pre-commit

278:71 [comments] too few spaces before comment

Check warning on line 278 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / pre-commit

278:71 [comments] too few spaces before comment

Check warning on line 278 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / 🧹 Linters / pre-commit@🐍3.13@ubuntu-latest

278:71 [comments] too few spaces before comment
MaxymVlasov marked this conversation as resolved.
Show resolved Hide resolved
MaxymVlasov marked this conversation as resolved.
Show resolved Hide resolved
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: >-
git fetch --no-tags --prune --depth=1 origin
+refs/heads/*:refs/remotes/origin/*
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
> hadolint
&& chmod +x hadolint && sudo mv hadolint /usr/bin/
# Need to success pre-commit fix push
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
fetch-depth: 0
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/reusable-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@
- name: Grab the source from Git
if: >-
contains(fromJSON('["pre-commit", "spellcheck-docs"]'), inputs.toxenv)
uses: actions/checkout@v4
# yamllint disable-line rule:line-length
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 169 in .github/workflows/reusable-tox.yml

View workflow job for this annotation

GitHub Actions / pre-commit

169:71 [comments] too few spaces before comment

Check warning on line 169 in .github/workflows/reusable-tox.yml

View workflow job for this annotation

GitHub Actions / pre-commit

169:71 [comments] too few spaces before comment

Check warning on line 169 in .github/workflows/reusable-tox.yml

View workflow job for this annotation

GitHub Actions / pre-commit

169:71 [comments] too few spaces before comment

Check warning on line 169 in .github/workflows/reusable-tox.yml

View workflow job for this annotation

GitHub Actions / 🧹 Linters / pre-commit@🐍3.13@ubuntu-latest

169:71 [comments] too few spaces before comment
MaxymVlasov marked this conversation as resolved.
Show resolved Hide resolved
MaxymVlasov marked this conversation as resolved.
Show resolved Hide resolved
with:
ref: ${{ github.event.inputs.release-committish }}
- name: Retrieve the project source from an sdist inside the GHA artifact
Expand Down
Loading