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 diff --git a/action.yml b/action.yml index c6a426d..37dc34d 100644 --- a/action.yml +++ b/action.yml @@ -12,11 +12,10 @@ 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 - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - skip-go-installation: true version: ${{ inputs.version-golangci-lint }}