From 838b299e2ef099cc0597bababf25be648f4294e3 Mon Sep 17 00:00:00 2001 From: Peter Mescalchin Date: Wed, 9 Mar 2022 13:41:47 +1100 Subject: [PATCH 1/3] Bump `actions/setup-go@v3` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c6a426d..edf4cb2 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ runs: using: composite steps: - name: Setup Golang - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ inputs.version-golang }} - name: Lint From fb4a64b7b8c8a3738d600ba42242752fb37326d7 Mon Sep 17 00:00:00 2001 From: Peter Mescalchin Date: Wed, 9 Mar 2022 13:42:05 +1100 Subject: [PATCH 2/3] Bump `golangci/golangci-lint-action@v3` --- action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index edf4cb2..37dc34d 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,6 @@ runs: with: go-version: ${{ inputs.version-golang }} - name: Lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - skip-go-installation: true version: ${{ inputs.version-golangci-lint }} From 11ebfd71ecf96356eb13366b77711874122404dc Mon Sep 17 00:00:00 2001 From: Peter Mescalchin Date: Wed, 9 Mar 2022 13:47:06 +1100 Subject: [PATCH 3/3] `README.md` tweak --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68aab05..0483eec 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ GitHub Action for setting up Golang via [actions/setup-go](https://github.com/ac At completion of Action, runner will be left with the desired Golang version, ready for running additional quality of life operations - such as `go test`. -**Note:** internally, the [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) action provides caching of the Golang build/module cache directories - so no requirement to handle this within the composite action. +**Note:** internally, [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) provides caching of the Golang build/module cache directories - so no requirement to handle this within the composite action. ## Usage