chore(deps): bump actions/checkout from 4.1.7 to 4.2.1 #1174
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: Lint | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.21.x | |
cache: false | |
- name: Lint | |
uses: golangci/[email protected] | |
with: | |
version: latest | |
args: --timeout 5m | |
# Check if there are any dirty changes after go mod tidy | |
check-mod: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.21.x | |
cache: false | |
- name: Get Go environment | |
id: go-env | |
run: | | |
echo "::set-output name=cache::$(go env GOCACHE)" | |
echo "::set-output name=modcache::$(go env GOMODCACHE)" | |
- name: Set up cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
${{ steps.go-env.outputs.cache }} | |
${{ steps.go-env.outputs.modcache }} | |
key: check-mod-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
check-mod-${{ runner.os }}-go- | |
- name: Download dependencies | |
run: go mod download && go mod tidy | |
- name: Check git diff | |
run: git diff --exit-code | |
# Check if there are any dirty changes after go generate | |
check-generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.21.x | |
cache: false | |
- name: Get Go environment | |
id: go-env | |
run: | | |
echo "::set-output name=cache::$(go env GOCACHE)" | |
echo "::set-output name=modcache::$(go env GOMODCACHE)" | |
- name: Set up cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
${{ steps.go-env.outputs.cache }} | |
${{ steps.go-env.outputs.modcache }} | |
key: check-generate-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
check-generate-${{ runner.os }}-go- | |
- name: Download dependencies | |
run: go mod download && go mod tidy | |
- name: Generate files | |
run: make generate | |
- name: Check git diff | |
run: git diff --exit-code |