From 3d9836c2bf1e7e2fdeb2f55255257fe645a0ad86 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 May 2024 20:43:51 +0000 Subject: [PATCH] build(deps): bump actions/setup-go from 3 to 5 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 757f816..12b73c7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: "Set up Go:${{ matrix.go }}" - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: '${{ matrix.go }}' - name: Make build @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: "Set up Go" - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: '1.19' - name: Make check