From 219515acfdd6eae445c631fbf52786f819fbe19e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 12:04:08 +0000 Subject: [PATCH 1/2] Bump actions/setup-go from 4 to 5 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4...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/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9cbfcd1..3589f54 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod cache-dependency-path: go.sum From 4f73ac9c70d89bb9ba0558196617ea2563073251 Mon Sep 17 00:00:00 2001 From: Ben Hale Date: Tue, 12 Dec 2023 14:09:50 -0800 Subject: [PATCH 2/2] Polishing Signed-off-by: Ben Hale --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3589f54..b4f18c6 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -15,7 +15,7 @@ jobs: go-version-file: go.mod cache-dependency-path: go.sum - name: Install richgo - run: go install -ldflags="-s -w" github.com/kyoh86/richgo + run: go install -ldflags="-s -w" github.com/kyoh86/richgo@latest - name: Run Tests run: richgo test -v ./... -coverprofile cover.out env: