Skip to content

chore(deps): update actions/checkout action to v5 #341

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

chore(deps): update actions/checkout action to v5 #341

Workflow file for this run

name: Lint project
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
# perform matrix testing to give us an earlier insight into issues with different versions of supported major versions of Go
matrix:
version:
# versions of Go that this module can still be built with (and therefore are "supported" by this project)
- "1.22"
# actively supported versions of Go
- "1.23"
- "1.24"
steps:
- name: Check out source code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
with:
go-version: ${{ matrix.version }}
- name: Run `make lint-ci`
run: make lint-ci