Skip to content

Bump golang.org/x/net from 0.29.0 to 0.30.0 in the production-dependencies group #36

Bump golang.org/x/net from 0.29.0 to 0.30.0 in the production-dependencies group

Bump golang.org/x/net from 0.29.0 to 0.30.0 in the production-dependencies group #36

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.20.3
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: go test ./...