From 71c8af30ea40514c0a7c154ae9c69f3818d4bd0f Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 20 Feb 2022 17:23:51 +0400 Subject: [PATCH] update GitHub Actions to use Go 1.18rc1 (#3335) --- .github/workflows/integration.yml | 2 +- .github/workflows/unit.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 073eaeddd..529b0d2ac 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ "1.16.x", "1.17.x", "1.18.0-beta1" ] + go: [ "1.16.x", "1.17.x", "1.18.0-rc1" ] runs-on: ubuntu-latest env: DEBUG: false # set this to true to export qlogs and save them as artifacts diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 180c36c17..84cfef8da 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -7,7 +7,7 @@ jobs: fail-fast: false matrix: os: [ "ubuntu", "windows", "macos" ] - go: [ "1.16.x", "1.17.x", "1.18.0-beta1" ] + go: [ "1.16.x", "1.17.x", "1.18.0-rc1" ] runs-on: ${{ matrix.os }}-latest name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }}) steps: