From edb5075fe632b9356f8e8d719c96e03ae773d5cc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 22:06:37 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v7 --- .github/workflows/linters.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 436b910..92ae701 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v7 - name: Run Commitsar uses: docker://outillage/commitsar diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 913da6e..00c1e2e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,14 +10,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v1 + uses: actions/checkout@v7 - name: Set up Go 1.13 uses: actions/setup-go@v6 with: go-version: 1.13 - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v7 - name: Release Notary uses: docker://outillage/release-notary diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 328cb3b..b230404 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,6 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v7 - name: Test run: make ci