From c266bc0a09f8d3ad36d287c758ab47f2564813f2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 11:40:38 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v7 --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0597e4a..a49cf55 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -40,7 +40,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ github.head_ref }} token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36ad8f4..46907d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 @@ -61,13 +61,13 @@ jobs: continue-on-error: true steps: - name: Checkout Previous Code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: ${{ github.base_ref }} path: previous - name: Checkout New Code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: path: new