Skip to content

Bump actions/upload-artifact from 4.6.0 to 4.6.1 #423

Bump actions/upload-artifact from 4.6.0 to 4.6.1

Bump actions/upload-artifact from 4.6.0 to 4.6.1 #423

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@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: 'stable'
- name: Build
run: go build -v .
- name: Test
run: go test -v .