Skip to content

Bump golang.org/x/net from 0.15.0 to 0.17.0 in /security/multiauth #139

Bump golang.org/x/net from 0.15.0 to 0.17.0 in /security/multiauth

Bump golang.org/x/net from 0.15.0 to 0.17.0 in /security/multiauth #139

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
Linux:
name: Linux
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/[email protected]
with:
go-version: '1.21'
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Add $GOPATH/bin to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
id: setup_path
- name: Run CI for each Makefile
run: |
for makefile in $(find . -type f -name Makefile); do
make -C $(dirname $makefile) test
done