From b5c5e24647401bdce8558b3160f3d21f8f2c341e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 00:27:16 +0000 Subject: [PATCH] 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/go-build.yml | 2 +- .github/workflows/go-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-build.yml b/.github/workflows/go-build.yml index 44f0153..62c8d0b 100644 --- a/.github/workflows/go-build.yml +++ b/.github/workflows/go-build.yml @@ -13,7 +13,7 @@ jobs: matrix: go-version: [ '1.19.x', '1.20.x', '1.21.x' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@v3 diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index fa76c44..ec2b654 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -12,7 +12,7 @@ jobs: go-version: [ '1.19.x', '1.20.x', '1.21.x' ] # steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@v3 with: