-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: bump github actions and improve
golangci
job (#2228)
## Description: - Bump Github actions to remove [warnings](https://github.com/kurtosis-tech/kurtosis/actions/runs/8068319051) (only non breaking releases). - https://github.com/actions/checkout/releases/tag/v4.0.0 - https://github.com/actions/setup-go/releases/tag/v5.0.0 - https://github.com/8BitJonny/gh-get-current-pr/releases/tag/3.0.0 - https://github.com/stefanzweifel/git-auto-commit-action/releases/tag/v5.0.0 - https://github.com/pkgdeps/git-tag-action/releases/tag/v3.0.0 - https://github.com/github/issue-labeler/releases/tag/v3.4 - Simplify `golangci` job by using a matrix. Instead of executing `golangci-lint` in a sequential manner for all folders, it will now concurrently run a total of `n` jobs, each dedicated to a specific folder. This should speed up the execution time. - Fix a small lint issue in `push-docs` job. ## Is this change user facing? NO <!-- If yes, please add the "user facing" label to the PR --> <!-- If yes, don't forget to include docs changes where relevant --> ## References (if applicable): <!-- Add relevant Github Issues, Discord threads, or other helpful information. --> --------- Co-authored-by: Gyanendra Mishra <[email protected]> Co-authored-by: leoporoli <[email protected]>
- Loading branch information
1 parent
404f316
commit 6fb5c1c
Showing
7 changed files
with
32 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,11 +29,11 @@ jobs: | |
if: ${{ needs.check-if-code-change.outputs.change == 'true' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v3 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.20' | ||
- run: go install github.com/bufbuild/buf/cmd/[email protected] | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Check if PR is breaking | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters