Skip to content

build(deps): bump github.com/cloudflare/cloudflare-go from 0.94.0 to 0.95.0 #378

build(deps): bump github.com/cloudflare/cloudflare-go from 0.94.0 to 0.95.0

build(deps): bump github.com/cloudflare/cloudflare-go from 0.94.0 to 0.95.0 #378

Workflow file for this run

on: [pull_request]
permissions:
contents: read
pull-requests: read
name: Lint
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed for `only-new-issues` to compare diffs
- name: install go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: go1.20-${{ hashFiles('**/go.sum') }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: "--config .golintci.yml"
only-new-issues: true
skip-cache: true