mirror of
https://github.com/helm/helm.git
synced 2026-04-07 10:05:01 -04:00
Merge pull request #13328 from robertsirc/adjusting-go-setup-check-latest
adding check-latest:true
This commit is contained in:
commit
b2286c4caa
4 changed files with 8 additions and 4 deletions
3
.github/workflows/build-test.yml
vendored
3
.github/workflows/build-test.yml
vendored
|
|
@ -20,7 +20,8 @@ jobs:
|
|||
- name: Setup Go
|
||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # pin@5.0.2
|
||||
with:
|
||||
go-version: '1.22.7'
|
||||
go-version: '1.22'
|
||||
check-latest: true
|
||||
- name: Test source headers are present
|
||||
run: make test-source-headers
|
||||
- name: Run unit tests
|
||||
|
|
|
|||
3
.github/workflows/golangci-lint.yml
vendored
3
.github/workflows/golangci-lint.yml
vendored
|
|
@ -18,7 +18,8 @@ jobs:
|
|||
- name: Setup Go
|
||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # pin@5.0.2
|
||||
with:
|
||||
go-version: "1.22.7"
|
||||
go-version: '1.22'
|
||||
check-latest: true
|
||||
- name: golangci-lint
|
||||
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 #pin@6.1.0
|
||||
with:
|
||||
|
|
|
|||
3
.github/workflows/govulncheck.yml
vendored
3
.github/workflows/govulncheck.yml
vendored
|
|
@ -16,7 +16,8 @@ jobs:
|
|||
- name: Setup Go
|
||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # pin@5.0.2
|
||||
with:
|
||||
go-version: '1.22.7'
|
||||
go-version: '1.22'
|
||||
check-latest: true
|
||||
- name: govulncheck
|
||||
uses: golang/govulncheck-action@dd0578b371c987f96d1185abb54344b44352bd58 # pin@1.0.3
|
||||
with:
|
||||
|
|
|
|||
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
|
@ -83,7 +83,8 @@ jobs:
|
|||
- name: Setup Go
|
||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # pin@5.0.2
|
||||
with:
|
||||
go-version: '1.22.7'
|
||||
go-version: '1.22'
|
||||
check-latest: true
|
||||
|
||||
- name: Run unit tests
|
||||
run: make test-coverage
|
||||
|
|
|
|||
Loading…
Reference in a new issue