From 24c6db0cd9c4d3866e1fbacec7e0a3599dfbf5ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 21:11:32 +0000 Subject: [PATCH] chore(deps): 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/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 65c7898b..6e9e8940 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -22,7 +22,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - name: Setup Golang Environment - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod - name: Lint Code @@ -38,7 +38,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - name: Setup Golang Environment - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 - name: Run Tests run: make test - name: Upload coverage to Codecov