From 0e2240eb7c5c3cc437419f28c9060e991a2cd30d Mon Sep 17 00:00:00 2001 From: Mihaly Gyongyosi Date: Thu, 23 May 2024 15:49:28 +0200 Subject: [PATCH] Update actions --- .github/workflows/lint.yml | 3 ++- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d6b985d1..76d258db 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-go@v5 - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: v1.54.2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 97de0e43..49d68ce8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.19.x', '1.20.x', '1.21.x'] + go: [ '1.19.x', '1.20.x', '1.21.x', '1.22.x' ] steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5