From 3d7133dd66cdc4dc45a23693d7174123db2c82e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Wa=C5=82ach?= Date: Wed, 2 Sep 2026 17:08:16 +0200 Subject: [PATCH] chore: bump action versions in common workflow templates actions/checkout@v2/@v3 and actions/stale@v4 run on Node runtimes that GitHub Actions no longer supports, and actionlint (>= 1.7.x) rejects them with "the runner of ... action is too old to run on GitHub Actions". Downstream repositories had already been bumped by renovate, but the template sync overwrote them with these older pins (e.g. ory/k8s commit 6428f395), which turned the GHA linter red on every PR touching .github/** in those repos. Bump to the versions renovate had settled on: actions/checkout@v7, amannn/action-semantic-pull-request@v6 and actions/stale@v11. Co-Authored-By: Claude Fable 5.1 --- .../repository/common/.github/workflows/closed_references.yml | 2 +- .../common/.github/workflows/conventional_commits.yml | 4 ++-- templates/repository/common/.github/workflows/labels.yml | 2 +- templates/repository/common/.github/workflows/stale.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/repository/common/.github/workflows/closed_references.yml b/templates/repository/common/.github/workflows/closed_references.yml index 2789ac4..23520a3 100644 --- a/templates/repository/common/.github/workflows/closed_references.yml +++ b/templates/repository/common/.github/workflows/closed_references.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest name: Find closed references steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v7 - uses: actions/setup-node@v2-beta with: node-version: "14" diff --git a/templates/repository/common/.github/workflows/conventional_commits.yml b/templates/repository/common/.github/workflows/conventional_commits.yml index eb5de54..c36e376 100644 --- a/templates/repository/common/.github/workflows/conventional_commits.yml +++ b/templates/repository/common/.github/workflows/conventional_commits.yml @@ -21,7 +21,7 @@ jobs: name: Validate PR title runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - id: config uses: ory/ci/conventional_commit_config@master with: @@ -43,7 +43,7 @@ jobs: deps docs default_require_scope: false - - uses: amannn/action-semantic-pull-request@v4 + - uses: amannn/action-semantic-pull-request@v6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/templates/repository/common/.github/workflows/labels.yml b/templates/repository/common/.github/workflows/labels.yml index c470ddc..33dc93b 100644 --- a/templates/repository/common/.github/workflows/labels.yml +++ b/templates/repository/common/.github/workflows/labels.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v7 - name: Synchronize Issue Labels uses: ory/label-sync-action@v0 with: diff --git a/templates/repository/common/.github/workflows/stale.yml b/templates/repository/common/.github/workflows/stale.yml index 666299c..027352c 100644 --- a/templates/repository/common/.github/workflows/stale.yml +++ b/templates/repository/common/.github/workflows/stale.yml @@ -9,7 +9,7 @@ jobs: if: github.repository_owner == 'ory' runs-on: ubuntu-latest steps: - - uses: actions/stale@v4 + - uses: actions/stale@v11 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: |