Skip to content

chore(deps): bump actions/setup-go from 4.0.0 to 5.1.0 #168

chore(deps): bump actions/setup-go from 4.0.0 to 5.1.0

chore(deps): bump actions/setup-go from 4.0.0 to 5.1.0 #168

Workflow file for this run

---
name: Go linter
on:
workflow_dispatch:
push:
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: Golangci-lint
runs-on: ubuntu-latest
env:
GO_VERSION: '~1.23'
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/[email protected]
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.61
args: --config .golang-ci.yml
github-token: ${{ secrets.GITHUB_TOKEN }}