Skip to content

build(deps): bump step-security/harden-runner from 2.19.1 to 2.19.3 #411

build(deps): bump step-security/harden-runner from 2.19.1 to 2.19.3

build(deps): bump step-security/harden-runner from 2.19.1 to 2.19.3 #411

Workflow file for this run

name: Build-Test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
permissions: {}
jobs:
build-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: '1.24'
check-latest: true
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...