From 5489fa7dc1b56854efe6e4390017012700dfcd08 Mon Sep 17 00:00:00 2001 From: cmendible <266546+cmendible@users.noreply.github.com> Date: Tue, 21 Nov 2023 19:07:06 +0100 Subject: [PATCH] checkout before setting up go so caching works --- .github/workflows/build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2b11ad33..a47560ff 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -53,16 +53,16 @@ jobs: - os: macOS-latest target_arch: arm steps: - - name: Set up Go ${{ env.GOVER }} - uses: actions/setup-go@v4 - with: - go-version: ${{ env.GOVER }} - - name: Check out code into the Go module directory uses: actions/checkout@v3 with: fetch-depth: 0 + - name: Set up Go ${{ env.GOVER }} + uses: actions/setup-go@v4 + with: + go-version: ${{ env.GOVER }} + - name: Setup .NET Core uses: actions/setup-dotnet@v3 with: