From 90570b83176725e9950f8f3a268c255c8a2dd961 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 20:15:32 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v7 --- .github/workflows/sync.yml | 4 ++-- shared/.github/workflows/ci.yml | 6 +++--- shared/.github/workflows/promote-image.yml | 2 +- shared/.github/workflows/release.yml | 4 ++-- shared/.github/workflows/sync-oapi.yml | 10 +++++----- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index d4b1c17..562f7e3 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -20,13 +20,13 @@ jobs: steps: - name: Checkout shared-config repo - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: shared-files token: ${{ secrets.BOT_PAT }} - name: Checkout target repo - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: ${{ matrix.repo }} token: ${{ secrets.BOT_PAT }} diff --git a/shared/.github/workflows/ci.yml b/shared/.github/workflows/ci.yml index 39ff717..0d59b58 100644 --- a/shared/.github/workflows/ci.yml +++ b/shared/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 @@ -56,7 +56,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 diff --git a/shared/.github/workflows/promote-image.yml b/shared/.github/workflows/promote-image.yml index a69045d..23b7cdd 100644 --- a/shared/.github/workflows/promote-image.yml +++ b/shared/.github/workflows/promote-image.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Prepare run: | diff --git a/shared/.github/workflows/release.yml b/shared/.github/workflows/release.yml index d5df36a..c1c1b60 100644 --- a/shared/.github/workflows/release.yml +++ b/shared/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: should_release: ${{ steps.version.outputs.hasNextVersion }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.BOT_PAT }} @@ -72,7 +72,7 @@ jobs: if: needs.update-version.outputs.should_release == 'true' steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Generate release notes diff --git a/shared/.github/workflows/sync-oapi.yml b/shared/.github/workflows/sync-oapi.yml index 4025cb3..64298c6 100644 --- a/shared/.github/workflows/sync-oapi.yml +++ b/shared/.github/workflows/sync-oapi.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Check if openapi.yml exists id: check-openapi @@ -30,7 +30,7 @@ jobs: - name: Checkout docs repository if: steps.check-openapi.outputs.exists == 'true' - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: EnclaveRunner/docs token: ${{ secrets.BOT_PAT }} @@ -89,7 +89,7 @@ jobs: has-targets: ${{ steps.set-matrix.outputs.has-targets }} steps: - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Read oapi.targets and prepare matrix id: set-matrix @@ -127,7 +127,7 @@ jobs: steps: - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: source-repo token: ${{ secrets.BOT_PAT }} @@ -145,7 +145,7 @@ jobs: - name: Checkout target repo if: steps.check-openapi.outputs.exists == 'true' - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: ${{ matrix.repo }} token: ${{ secrets.BOT_PAT }}