Skip to content

Bump the support-dependencies group across 1 directory with 6 updates #288

Bump the support-dependencies group across 1 directory with 6 updates

Bump the support-dependencies group across 1 directory with 6 updates #288

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ '**' ]
permissions:
contents: read
jobs:
build:
runs-on: [self-hosted, arm64]
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: '>=1.26.2'
cache: false
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...