Skip to content

build(deps): another round of dependabot upgrades (#112) #172

build(deps): another round of dependabot upgrades (#112)

build(deps): another round of dependabot upgrades (#112) #172

Workflow file for this run

name: Build
on:
push:
paths:
- "cmd/**"
- "pkg/**"
- ".github/workflows/build.yml"
jobs:
build_bif:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: smartcontractkit/tool-versions-to-env-action@aabd5efbaf28005284e846c5cf3a02f2cba2f4c2 # v1.0.8
id: tool-versions
- name: Setup go ${{ steps.tool-versions.outputs.golang_version }}
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ steps.tool-versions.outputs.golang_version }}
- name: Make build
run: make build
- name: Make clean
run: make clean