From 84e10caabd02b008b7893a0c688e400db7e20bb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 13:42:39 -0700 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#53) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/go.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9daea7a..55f51f9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Check-out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go using version from go.mod uses: actions/setup-go@v4 with: @@ -27,7 +27,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Check-out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go using version from go.mod uses: actions/setup-go@v4 with: @@ -40,7 +40,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Check-out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run code linters run: | make golangci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5197594..078812c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Check-out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Read version run: | echo "version=$(head VERSION)" >> $GITHUB_ENV