Skip to content

chore(deps): update actions/checkout action to v6 #4389

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #4389

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: install go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.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 }}