Skip to content

build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.0 #788

build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.0

build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.0 #788

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@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.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 .