Skip to content

Renovate: Update actions/checkout action to v6 #200

Renovate: Update actions/checkout action to v6

Renovate: Update actions/checkout action to v6 #200

Workflow file for this run

name: "Unit tests"
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: 'go.mod'
token: ${{ secrets.GITHUB_TOKEN }}
- name: lint & test
run: make test
- name: build
run: make build-all