Skip to content

chore(deps): bump golang.org/x/sync from 0.16.0 to 0.17.0 in /_examples #4120

chore(deps): bump golang.org/x/sync from 0.16.0 to 0.17.0 in /_examples

chore(deps): bump golang.org/x/sync from 0.16.0 to 0.17.0 in /_examples #4120

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
types: [ opened, synchronize ]
# When a new revision is pushed to a PR, cancel all in-progress CI runs for that
# PR. See https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
GOTOOLCHAIN: local
GOFLAGS: "-trimpath"
jobs:
golangci-lint:
env:
GOLANGCI_LINT_VERSION: latest
strategy:
matrix:
go: ["1.23", "1.24"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/[email protected]
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
- name: golangci-lint examples
uses: golangci/[email protected]
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
working-directory: _examples