Skip to content

Bump golang.org/x/net from 0.25.0 to 0.36.0 #113

Bump golang.org/x/net from 0.25.0 to 0.36.0

Bump golang.org/x/net from 0.25.0 to 0.36.0 #113

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ '**' ]
name: Go
jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.22.x, 1.23.x, 1.24.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Download Go dependencies
env:
GOPROXY: "https://proxy.golang.org"
run: go mod download
- name: Test with -race
run: go test -race -count=1 ./...
- name: Integration test
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.24')
run: |
sudo modprobe nfnetlink_queue
sudo ip6tables -I OUTPUT -p ipv6-icmp -j NFQUEUE --queue-num 100
sudo iptables -I OUTPUT -p icmp -j NFQUEUE --queue-num 100
go test -v -tags integration -exec=sudo -count=1 ./...
- name: staticcheck.io
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.24')
uses: dominikh/[email protected]
with:
version: "2025.1"
install-go: false
cache-key: ${{ matrix.go-version }}