From 1b19327f91d165c04786019c6fe7c47283f8f1c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:30:42 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 1 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 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/v1...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.yml | 2 +- .github/workflows/merge.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5a2986f5..e773c21b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -8,7 +8,7 @@ "runs-on": "ubuntu-latest", strategy: { matrix: { "go-version": [ "stable", "oldstable"] } }, steps: [ - { name: "Check out code into the Go module directory", uses: "actions/checkout@v3" }, + { name: "Check out code into the Go module directory", uses: "actions/checkout@v4" }, { name: "Set up Go ${{ matrix.go-version }}", uses: "actions/setup-go@v4", diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index aee7c44b..1bb7a511 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -11,7 +11,7 @@ name: "Build", "runs-on": "ubuntu-latest", steps: [ - {name: "Check out code into the Go module directory", uses: "actions/checkout@v1"}, + {name: "Check out code into the Go module directory", uses: "actions/checkout@v4"}, {name: "Test master", run: "make test-master"}, {name: "Test release", run: "make test-release"}, ],