From 11f883210a5034bb7450c703a976cfac71a888fb Mon Sep 17 00:00:00 2001 From: Marius Ghita Date: Sat, 22 Nov 2025 00:41:43 +0200 Subject: [PATCH 1/2] chore: update to actions/checkout v6 #0000 --- templates/.github/workflows/10-review.yaml.j2 | 4 ++-- templates/.github/workflows/30-release-and-build.yaml.j2 | 2 +- templates/.github/workflows/auto-run-repo-ansible.yaml.j2 | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/.github/workflows/10-review.yaml.j2 b/templates/.github/workflows/10-review.yaml.j2 index f3ce32b..83e1fc1 100644 --- a/templates/.github/workflows/10-review.yaml.j2 +++ b/templates/.github/workflows/10-review.yaml.j2 @@ -13,7 +13,7 @@ jobs: if: github.actor != 'dependabot[bot]' continue-on-error: true steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # interesting alternative: https://github.com/cocogitto/cocogitto - uses: webiny/action-conventional-commits@v1.3.0 @@ -37,7 +37,7 @@ jobs: code-quality: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: latest repo-ansible/reviewdog container run: docker pull ghcr.io/linkorb/repo-ansible/reviewdog:latest - name: run reviewdog checks diff --git a/templates/.github/workflows/30-release-and-build.yaml.j2 b/templates/.github/workflows/30-release-and-build.yaml.j2 index 3de54a6..d1a5e41 100644 --- a/templates/.github/workflows/30-release-and-build.yaml.j2 +++ b/templates/.github/workflows/30-release-and-build.yaml.j2 @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/templates/.github/workflows/auto-run-repo-ansible.yaml.j2 b/templates/.github/workflows/auto-run-repo-ansible.yaml.j2 index 79b86bc..a0062ff 100644 --- a/templates/.github/workflows/auto-run-repo-ansible.yaml.j2 +++ b/templates/.github/workflows/auto-run-repo-ansible.yaml.j2 @@ -29,10 +29,10 @@ jobs: runs-on: ubuntu-latest steps: - if: ${{ env.IS_PULL_REQUEST == '0' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ env.IS_PULL_REQUEST == '1' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: refs/pull/${{ github.event.pull_request.number }}/merge From 5562b23fee7a48126ea156bfc7278803ff0e9995 Mon Sep 17 00:00:00 2001 From: Marius Ghita Date: Sat, 22 Nov 2025 00:55:08 +0200 Subject: [PATCH 2/2] chore: apply repo-ansible changes #0000 --- .github/workflows/10-review.yaml | 2 +- .github/workflows/auto-run-repo-ansible.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/10-review.yaml b/.github/workflows/10-review.yaml index b64344f..65467e1 100644 --- a/.github/workflows/10-review.yaml +++ b/.github/workflows/10-review.yaml @@ -13,7 +13,7 @@ jobs: if: github.actor != 'dependabot[bot]' continue-on-error: true steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # interesting alternative: https://github.com/cocogitto/cocogitto - uses: webiny/action-conventional-commits@v1.3.0 diff --git a/.github/workflows/auto-run-repo-ansible.yaml b/.github/workflows/auto-run-repo-ansible.yaml index dff3a7f..3e91590 100644 --- a/.github/workflows/auto-run-repo-ansible.yaml +++ b/.github/workflows/auto-run-repo-ansible.yaml @@ -29,10 +29,10 @@ jobs: runs-on: ubuntu-latest steps: - if: ${{ env.IS_PULL_REQUEST == '0' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ env.IS_PULL_REQUEST == '1' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: refs/pull/${{ github.event.pull_request.number }}/merge