From 1e57af6a49c22a60fe8b479c8eeae93793d97c14 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 14:39:17 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/it-test.yml | 14 +++++++------- .github/workflows/pre-commit.yml | 2 +- action.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/it-test.yml b/.github/workflows/it-test.yml index b7c52da..aa0b933 100644 --- a/.github/workflows/it-test.yml +++ b/.github/workflows/it-test.yml @@ -9,11 +9,11 @@ jobs: name: "IT Test - default inputs values should work fine on this repo" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Given the gh-action is used with default values id: test-data uses: ./ - - uses: nick-fields/assert-action@aa0067e01f0f6545c31755d6ca128c5a3a14f6bf # v2 + - uses: nick-fields/assert-action@aa0067e01f0f6545c31755d6ca128c5a3a14f6bf # v2.0.0 name: Then outputs.status value must be 0 as the project itself makes use of pre-commit validation with: expected: 0 @@ -24,7 +24,7 @@ jobs: name: "IT Test - custom extra-args should be honored" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Given the gh-action is used with extra-args=--help id: test-data uses: ./ @@ -41,7 +41,7 @@ jobs: name: "IT Test - output status should be 1 given pre-commit detected some issue" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Given a pre-commit-config not correctly respected id: test-data uses: ./ @@ -60,7 +60,7 @@ jobs: name: "IT Test - output status should be 0 given pre-commit detected no issue" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Given a pre-commit-config correctly respected id: test-data uses: ./ @@ -79,7 +79,7 @@ jobs: name: "IT Test - output logs should contain failures given pre-commit detected some issue" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Given a pre-commit-config not correctly respected id: test-data uses: ./ @@ -98,7 +98,7 @@ jobs: name: "IT Test - output logs should contain no failure given pre-commit detected no issue" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Given a pre-commit-config correctly respected id: test-data uses: ./ diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 2e34aad..9614a1a 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -6,7 +6,7 @@ jobs: name: "pre-commit" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - uses: ./ with: extra-args: > diff --git a/action.yml b/action.yml index 785fa2d..76505b0 100644 --- a/action.yml +++ b/action.yml @@ -32,14 +32,14 @@ runs: echo "CONFIG_PATH=$CONFIG_PATH" >> "$GITHUB_ENV" echo "EXTRA_ARGS=$EXTRA_ARGS" >> "$GITHUB_ENV" - name: Checkout - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: Fetch origin run: git fetch origin # avoid unknown revision or path not in the working tree when # using --from-ref --to-ref feature of pre-commit shell: bash - id: setup_python name: Setup python - uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 + uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: python-version: '3.14' - name: Setup pre-commit @@ -47,7 +47,7 @@ runs: python -m pip install --upgrade pip python -m pip install --quiet pre-commit==3.7.1 shell: bash - - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 id: restore-cache with: key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles(env.CONFIG_PATH) }} @@ -65,7 +65,7 @@ runs: run: | pre-commit install-hooks --config="$CONFIG_PATH" shell: bash - - uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 if: steps.restore-cache.outputs.cache-hit != 'true' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) with: