Skip to content

Bump the support-dependencies group with 7 updates (#274) #734

Bump the support-dependencies group with 7 updates (#274)

Bump the support-dependencies group with 7 updates (#274) #734

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@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: '>=1.23.0'
cache: false
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...