Bump golangci/golangci-lint-action from 3 to 5 #249
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: {} | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.6 | |
- name: Install Pkger | |
run: go install --mod=readonly github.com/markbates/pkger/cmd/pkger | |
- name: Build | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: --rm-dist --snapshot | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.6 | |
- name: Test | |
run: go test ./... | |
integration_ghes: | |
name: Integration Test (GitHub Enterprise Server) | |
runs-on: ubuntu-20.04 | |
if: ${{ github.event != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.6 | |
- name: Build | |
run: go build | |
- name: Test | |
run: ./codeql-action-sync sync --destination-url https://ghe.io/ --destination-repository codeql-action-sync-tool/integration-test | |
env: | |
CODEQL_ACTION_SYNC_TOOL_DESTINATION_TOKEN: ${{ secrets.INTEGRATION_TEST_GHES_TOKEN }} | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.6 | |
- name: Check Modules | |
run: | | |
go mod tidy | |
if [ ! -z "$(git status --porcelain=v1)" ]; then | |
>&2 echo "Please run \`go mod tidy\` and commit the result." | |
exit 1 | |
fi | |
- name: Lint | |
uses: golangci/golangci-lint-action@v5 | |
with: | |
version: v1.29 | |
licensedci: | |
name: Check Licenses | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.6 | |
- name: Setup licensedci | |
uses: jonabc/setup-licensed@v1 | |
with: | |
version: 2.x | |
- name: Run licensedci | |
run: licensed status |