From be63a34ee082e72b2e90cbb2d757c3251e5ddbcf Mon Sep 17 00:00:00 2001 From: Christopher Puschmann Date: Thu, 20 Oct 2022 00:15:53 +0200 Subject: [PATCH 1/2] chore: update GitHub Action dependencies --- .github/workflows/pr.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index cc3ff7d2..f7cb4469 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -4,7 +4,6 @@ on: pull_request: branches: [ master ] - jobs: gomod: runs-on: ubuntu-latest @@ -21,9 +20,9 @@ jobs: name: Go ${{ matrix.go }}.x PR Validate ${{ matrix.branch }} (Modules) steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} - name: Version @@ -40,10 +39,9 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3.2.0 with: - version: v1.45 + version: v1.50.0 only-new-issues: true - From 28eba6ae3afe07af0b5c576c618a5acfc25b8397 Mon Sep 17 00:00:00 2001 From: Christopher Puschmann Date: Thu, 20 Oct 2022 00:16:32 +0200 Subject: [PATCH 2/2] chore: add Go 1.19 to test matrix --- .github/workflows/pr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f7cb4469..a10b2fdd 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,6 +10,7 @@ jobs: strategy: matrix: go: [ + '1.19', '1.18', '1.17', '1.16',