Skip to content

build(deps): bump actions/checkout from 3 to 5 #1381

build(deps): bump actions/checkout from 3 to 5

build(deps): bump actions/checkout from 3 to 5 #1381

Workflow file for this run

name: golangci-lint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
# Remove all permissions from GITHUB_TOKEN except metadata.
permissions: {}
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
working-directory:
- ""
- test
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Set GOROOT
run: echo "GOROOT=$(go env GOROOT)" >> $GITHUB_ENV
- name: golangci-lint
uses: golangci/golangci-lint-action@v6.5.2
with:
version: v1.59.1
working-directory: ${{matrix.working-directory}}
env:
GOROOT: ${{ env.GOROOT }}