Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Bump golang.org/x/net from 0.29.0 to 0.36.0 in the go_modules group across 1 directory #142

Bump golang.org/x/net from 0.29.0 to 0.36.0 in the go_modules group across 1 directory

Bump golang.org/x/net from 0.29.0 to 0.36.0 in the go_modules group across 1 directory #142

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: 1.23
- name: Build
run: go build -v ./...
lint:
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
pull-requests: read
checks: write
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: golangci-lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
only-new-issues: true
test:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: 1.23
- name: Test
run: go test -v ./...