From b1021d034c5bac64fb6485e5a026753935021c81 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 14:32:16 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/it-test.yml | 12 ++++++------ .github/workflows/pre-commit.yml | 2 +- action.yml | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/it-test.yml b/.github/workflows/it-test.yml index d2199ff..a06aca5 100644 --- a/.github/workflows/it-test.yml +++ b/.github/workflows/it-test.yml @@ -9,7 +9,7 @@ jobs: name: "IT Test - default inputs values should work fine on this repo" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - name: Given the gh-action is used with default values id: test-data uses: ./ @@ -24,7 +24,7 @@ jobs: name: "IT Test - custom extra-args should be honored" runs-on: github-ubuntu-latest-s steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - 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 cc014a7..296befe 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - uses: ./ with: extra-args: > diff --git a/action.yml b/action.yml index d7026de..124211b 100644 --- a/action.yml +++ b/action.yml @@ -32,22 +32,22 @@ runs: echo "CONFIG_PATH=$CONFIG_PATH" >> "$GITHUB_ENV" echo "EXTRA_ARGS=$EXTRA_ARGS" >> "$GITHUB_ENV" - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 - 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@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: - python-version: '3.10' + python-version: '3.13' - name: Setup pre-commit run: | python -m pip install --upgrade pip python -m pip install --quiet pre-commit==3.7.1 shell: bash - - uses: actions/cache/restore@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1 + - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 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@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1 + - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 if: steps.restore-cache.outputs.cache-hit != 'true' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) with: