From a4864ffab3911b192fbea7d940de0f7082dee95b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:00:38 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/build.yaml | 6 +++--- .github/workflows/release.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f32956f..79c95b3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,7 +16,7 @@ jobs: go-version: 1.15 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Lint Go Code run: | @@ -33,7 +33,7 @@ jobs: go-version: 1.15 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Run Unit tests. run: go test ./... @@ -49,7 +49,7 @@ jobs: go-version: 1.15 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Build run: go build . diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bd37a3e..d0ce961 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Validates GO releaser config uses: docker://goreleaser/goreleaser:latest