From 57af66805bc2c1bccc41eec62282ab8feba1ff65 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 14:38:22 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/it-test.yml | 12 ++++++------ .github/workflows/pre-commit.yml | 2 +- action.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/it-test.yml b/.github/workflows/it-test.yml index a06aca5..c1b8905 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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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 296befe..57508dc 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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - uses: ./ with: extra-args: > diff --git a/action.yml b/action.yml index 124211b..f25e859 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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.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@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 with: python-version: '3.13' - name: Setup pre-commit