Skip to content

build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 #169

build(deps): bump actions/setup-go from 5.0.2 to 5.1.0

build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 #169

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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