Bump golang.org/x/net from 0.22.0 to 0.23.0 #398
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
env: | |
GO111MODULE: off | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.22.x | |
- name: test | |
run: make test | |
- name: dist | |
run: make dist | |
- name: prepare-test | |
run: make prepare-test | |
- name: test e2e | |
run: make test-e2e | |