Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(deps): update non-major deps #4507

fix(deps): update non-major deps

fix(deps): update non-major deps #4507

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
steps:
- name: clone
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: install go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: build
run: |
make build