From 5ccaa499c1f3f4a3023f8baa6c011c4f60bd78da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 07:03:10 +0000 Subject: [PATCH] :arrow_up: Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e2a4fda..d640f91 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: with: go-version: 1.17 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set cache uses: actions/cache@v3.2.6 with: @@ -36,7 +36,7 @@ jobs: with: go-version: 1.17 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download go mod cache uses: actions/cache@v3.2.6 with: @@ -73,7 +73,7 @@ jobs: - name: Add PATH run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download go mod cache uses: actions/cache@v3.2.6 with: @@ -93,7 +93,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: 1.17 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3.2.6 with: path: ~/go/pkg/mod diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 021bb9b..d22229a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Set IMAGE_TAG env run: echo "IMAGE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to Google Artifact Registry