From a6d66721bf26d9129e910ce3165a960836894aeb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:03:13 -0500 Subject: [PATCH] Update actions/checkout action to v4 (#42) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/image-build.yml | 2 +- .github/workflows/lint-go.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test-go.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/image-build.yml b/.github/workflows/image-build.yml index b63fbd7..fa3c64f 100644 --- a/.github/workflows/image-build.yml +++ b/.github/workflows/image-build.yml @@ -14,7 +14,7 @@ jobs: - name: Log in to GHCR run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/lint-go.yml b/.github/workflows/lint-go.yml index c67158c..1d8d10f 100644 --- a/.github/workflows/lint-go.yml +++ b/.github/workflows/lint-go.yml @@ -10,7 +10,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version-file: "go.mod" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a25f6d..e295430 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Log in to GHCR run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest needs: goreleaser steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Publish Helm charts uses: stefanprodan/helm-gh-pages@master diff --git a/.github/workflows/test-go.yml b/.github/workflows/test-go.yml index 7d6000e..e5a7926 100644 --- a/.github/workflows/test-go.yml +++ b/.github/workflows/test-go.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 with: