Skip to content
This repository was archived by the owner on May 30, 2026. It is now read-only.

Bump actions/checkout from 5.0.0 to 6.0.1 #104

Bump actions/checkout from 5.0.0 to 6.0.1

Bump actions/checkout from 5.0.0 to 6.0.1 #104

Workflow file for this run

name: CI
permissions: {}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
timeout-minutes: 5
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: "go.mod"
check-latest: true
cache-dependency-path: go.sum
- name: Lint
run: ./task lint
- name: Test
run: ./task test
- name: Build
run: ./task build