Skip to content

Commit

Permalink
docs: update examples (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
KunalSin9h committed Aug 18, 2023
1 parent 3a91952 commit 6efbbad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -41,15 +41,15 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
version: v1.53
version: v1.54

# Optional: working directory, useful for monorepos
# working-directory: somedir
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
golangci:
strategy:
matrix:
go: ['1.20']
go: ['1.21']
os: [macos-latest, windows-latest]
name: lint
runs-on: ${{ matrix.os }}
Expand All @@ -118,7 +118,7 @@ jobs:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
version: v1.53
version: v1.54

# Optional: working directory, useful for monorepos
# working-directory: somedir
Expand Down

0 comments on commit 6efbbad

Please sign in to comment.