Skip to content

build(deps): Bump actions/checkout from 6.0.1 to 6.0.2 #753

build(deps): Bump actions/checkout from 6.0.1 to 6.0.2

build(deps): Bump actions/checkout from 6.0.1 to 6.0.2 #753

Workflow file for this run

name: Go
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: 'stable'
- name: Build
run: go build -v .
- name: Test
run: go test -v .