From cb7074a86133636139aaacd39ae477063cb126ed Mon Sep 17 00:00:00 2001 From: Markus Sommer Date: Mon, 27 Feb 2023 14:57:41 +0100 Subject: [PATCH] Bump go versions for tests v1.20 is out and v1.18 is end-of-life --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/nightly.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 386c603..0323efd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ # SPDX-FileCopyrightText: 2020, 2021 Alvar Penning -# SPDX-FileCopyrightText: 2022 Markus Sommer +# SPDX-FileCopyrightText: 2022, 2023 Markus Sommer # # SPDX-License-Identifier: GPL-3.0-or-later @@ -15,7 +15,7 @@ jobs: strategy: matrix: - go: [ '1.18', '1.19' ] + go: [ '1.19', '1.20' ] steps: - name: Set up Go ${{ matrix.go }} @@ -42,14 +42,14 @@ jobs: - name: Setup linter uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Check out code uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: - version: v1.50.1 + version: v1.51.2 args: --config contrib/golangci-lint/.golangci.yml @@ -63,4 +63,4 @@ jobs: uses: actions/checkout@v3 - name: REUSE Compliance Check - uses: fsfe/reuse-action@v1.1.1 + uses: fsfe/reuse-action@v1.2.0 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 24a2540..6921cde 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -1,5 +1,5 @@ # SPDX-FileCopyrightText: 2020, 2021 Alvar Penning -# SPDX-FileCopyrightText: 2022 Markus Sommer +# SPDX-FileCopyrightText: 2022, 2023 Markus Sommer # # SPDX-License-Identifier: GPL-3.0-or-later @@ -17,7 +17,7 @@ jobs: strategy: matrix: - go: [ '1.18', '1.19' ] + go: [ '1.19', '1.20' ] steps: - name: Set up Go ${{ matrix.go }}