From 8c307d0c6b85d2807b462079147148f4de2ad2a7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 02:31:06 +0000 Subject: [PATCH] Update actions/setup-go action to v5 --- .github/workflows/go-build.yml | 2 +- .github/workflows/go-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-build.yml b/.github/workflows/go-build.yml index 3588752..80ee0ba 100644 --- a/.github/workflows/go-build.yml +++ b/.github/workflows/go-build.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v3 # - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} # diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index a20d863..0440bf2 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} cache: true