From 267a99af1581bc0bb310b4664c3db699546fca2d Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Thu, 30 May 2024 12:11:08 +0200 Subject: [PATCH] doc(main): Updated toolchain --- .github/workflows/common-ci.yml | 3 ++- .github/workflows/coverage.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/common-ci.yml b/.github/workflows/common-ci.yml index e419f7e..9d500fa 100644 --- a/.github/workflows/common-ci.yml +++ b/.github/workflows/common-ci.yml @@ -20,13 +20,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: Install Go uses: actions/setup-go@v5 with: go-version: ${{ inputs.go_version }} + check-latest: true - name: Clean cache working-directory: ${{ inputs.module }} run: go clean -modcache && go clean -testcache && go mod tidy diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 20d3f1f..fddbe95 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -27,13 +27,14 @@ jobs: - "fxredis" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: Install Go uses: actions/setup-go@v5 with: go-version: ${{ inputs.go_version }} + check-latest: true - name: Install dependencies for module ${{ matrix.module }} working-directory: ${{ matrix.module }} run: go mod download