Skip to content

fix(deps): update all non-major dependencies #4406

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #4406

Workflow file for this run

# name of the action
name: build
# trigger on pull_request or push events
on:
pull_request:
push:
permissions:
contents: read
# pipeline to execute
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [darwin, linux, windows]
steps:
- name: clone
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: install go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
# use version from go.mod file
go-version-file: "go.mod"
cache: true
check-latest: true
- name: build
run: |
make build-${{ matrix.os }}