Skip to content

Commit

Permalink
Merge pull request #3 from flipgroup/bump-github-actions
Browse files Browse the repository at this point in the history
Bump GitHub actions
  • Loading branch information
magnetikonline committed Mar 9, 2022
2 parents 20e8244 + 11ebfd7 commit 8fc33b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
5 changes: 2 additions & 3 deletions action.yml
Expand Up @@ -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 }}

0 comments on commit 8fc33b9

Please sign in to comment.