Skip to content

Bump golang.org/x/sys from 0.17.0 to 0.18.0 (#55) #202

Bump golang.org/x/sys from 0.17.0 to 0.18.0 (#55)

Bump golang.org/x/sys from 0.17.0 to 0.18.0 (#55) #202

Workflow file for this run

on:
push:
branches:
- "*"
pull_request:
name: Build
jobs:
checks:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: "on"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: actions/cache@v4
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make build_amd64
- run: make build_i386