Skip to content

Bump golang.org/x/net from 0.27.0 to 0.28.0 #382

Bump golang.org/x/net from 0.27.0 to 0.28.0

Bump golang.org/x/net from 0.27.0 to 0.28.0 #382

Workflow file for this run

name: Go Build Process
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go version
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
check-latest: true
id: go
- name: Cache Go dependencies
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: go mod download
- name: Build
run: go build .
- name: Run Build Process
run: ./disposable-services-registry.exe -help