From 565b62dad829940300bd8a8c349ea3e76c43d89c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Feb 2022 12:14:26 +0000 Subject: [PATCH 1/2] Bump actions/setup-go from 2.1.5 to 2.2.0 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.5 to 2.2.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v2.1.5...v2.2.0) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/golang.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golang.yml b/.github/workflows/golang.yml index d56accd..41a4213 100644 --- a/.github/workflows/golang.yml +++ b/.github/workflows/golang.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v2.1.5 + uses: actions/setup-go@v2.2.0 with: go-version: 1.17 @@ -65,7 +65,7 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v2.1.5 + uses: actions/setup-go@v2.2.0 with: go-version: 1.17 From 9acf4eb1ed67303afca6518de4d14caead77b168 Mon Sep 17 00:00:00 2001 From: Marco Franssen Date: Mon, 14 Feb 2022 13:47:47 +0100 Subject: [PATCH 2/2] Utilize new setup-go action 'check-latest' Signed-off-by: Marco Franssen --- .github/workflows/golang.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/golang.yml b/.github/workflows/golang.yml index 41a4213..4db7b11 100644 --- a/.github/workflows/golang.yml +++ b/.github/workflows/golang.yml @@ -17,6 +17,7 @@ jobs: uses: actions/setup-go@v2.2.0 with: go-version: 1.17 + check-latest: true - name: Check out code uses: actions/checkout@v2.4.0 @@ -68,6 +69,7 @@ jobs: uses: actions/setup-go@v2.2.0 with: go-version: 1.17 + check-latest: true - name: Checkout uses: actions/checkout@v2.4.0