From 7b01e5be361d91ff871ecc0f88e9a5867555f87a Mon Sep 17 00:00:00 2001 From: "Juan P." Date: Fri, 16 Aug 2024 21:43:30 +0100 Subject: [PATCH] Fix integration --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4e38ab..3740814 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ name: integration jobs: test: ## Defines the platform for each test run - runs-on: 1.22.x + runs-on: ubuntu-latest ## the steps that will be run through for each version and platform ## combination @@ -17,7 +17,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: ${{ matrix.go-version }} + go-version: 1.22.x ## checks out our code locally so we can work with the files - name: Checkout code