Update workflows to fix node 20 deprecation and update golangci-lint-action version and config #1842
Workflow file for this run
This file contains hidden or 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
| name: Test and Validate | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**.md" | |
| - ".github/ISSUE_TEMPLATE/**" | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - ".github/ISSUE_TEMPLATE/**" | |
| jobs: | |
| build: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v6 | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ^1.18 | |
| - name: Test | |
| run: make test | |
| - name: Validate | |
| run: make validate | |
| golangci: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: "Set up Go 1.x" | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.19 | |
| - name: Lint with golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| # version of golangci-lint to use | |
| # Version should stay in sync with version used for local linting (lint job in Makefile). | |
| version: v2.12.2 |