From 988fe7fdf3abcad53d2b2a9d23d0b5c668c1f0df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Aug 2023 16:09:31 -0700 Subject: [PATCH] Bump actions/checkout from 2 to 3 (#70) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- 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 | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9915a2a2..a36cb24a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,7 @@ jobs: # with: # go-version: 1.15 # - name: Check-out code - # uses: actions/checkout@v2 + # uses: actions/checkout@v3 # - name: Run unit tests # run: | # make test @@ -67,7 +67,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Check-out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run code linters run: | make golangci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb1da802..5197594c 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@v2 + uses: actions/checkout@v3 - name: Read version run: | echo "version=$(head VERSION)" >> $GITHUB_ENV