From 803717475e7bd5d91fd86a490b8cd5ffc71ebf8d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 9 Feb 2021 20:10:23 +0000 Subject: [PATCH 1/2] Update actions/setup-go action to v2 --- .github/workflows/build.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cce94f0..4940b34 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: setup - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: go-version: 1.15 - name: checkout diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index fd84850..d14e5eb 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: setup - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: go-version: 1.15 - name: checkout -- 2.45.2 From 5a43beedb23efafd281ba0d70c438a5d5097a1ee Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 9 Feb 2021 20:10:29 +0000 Subject: [PATCH 2/2] Update golangci/golangci-lint-action action to v2 --- .github/workflows/build.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cce94f0..117e6c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: checkout uses: actions/checkout@v2 - name: lint - uses: golangci/golangci-lint-action@v1 + uses: golangci/golangci-lint-action@v2 continue-on-error: true with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index fd84850..4461e3a 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -33,7 +33,7 @@ jobs: - name: checkout uses: actions/checkout@v2 - name: lint - uses: golangci/golangci-lint-action@v1 + uses: golangci/golangci-lint-action@v2 continue-on-error: true with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. -- 2.45.2