Skip to content

Commit

Permalink
correct the tag comment to 4.0.1
Browse files Browse the repository at this point in the history
3.7.1 and 4.0.0 are the same tag, so in a previous PR we corrected
the tag to 3.7.1 as dependabot was not supposed to bump minors. But
since it actually doesn't honor the comment tag, but checks the sha
and sees a new version, it thinks were using v4 already. Hence this
PR. So since 3.7.1 and 4.0.0 are the same and it works, we can take
4.0.1 as well, but let's update the comment tag to reflect reality.

Also, fix the identation.

Signed-off-by: Tuomo Tanskanen <[email protected]>
  • Loading branch information
tuminoid committed Jul 1, 2024
1 parent a7fe215 commit a943953
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
fail-fast: false
matrix:
working-directory:
- ""
- api
- ""
- api
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Calculate go version
id: vars
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: golangci-lint-${{matrix.working-directory}}
uses: golangci/golangci-lint-action@d6238b002a20823d52840fda27e2d4891c5952dc # v3.7.1
with:
version: v1.54.2
working-directory: ${{matrix.working-directory}}
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Calculate go version
id: vars
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: golangci-lint-${{matrix.working-directory}}
uses: golangci/golangci-lint-action@d6238b002a20823d52840fda27e2d4891c5952dc # v4.0.1
with:
version: v1.54.2
working-directory: ${{matrix.working-directory}}

0 comments on commit a943953

Please sign in to comment.