From 8a5afad9f1d6bcd6627b0bb7e51f444f0758511b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 May 2024 11:16:12 +0100 Subject: [PATCH] ci: bump actions/checkout from 3 to 4 (#203) 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/ci.yml | 8 ++++---- .github/workflows/tag.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b973d8b..2d0b563 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: os: [ 'ubuntu-22.04', 'macos-12', 'windows-2022' ] steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -40,7 +40,7 @@ jobs: go-version: ${{ matrix.go }} - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -57,7 +57,7 @@ jobs: os: [ 'ubuntu-22.04', 'macos-12', 'windows-2022' ] steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 @@ -83,7 +83,7 @@ jobs: go: [ '1.20' ] # Check the binary of the latest go version is enough os: [ 'ubuntu-22.04', 'macos-12', 'windows-2022' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: go build . - uses: actions/upload-artifact@master name: Upload binary ${{ runner.os }} diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 4e0a794..ee68744 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 -