Skip to content

Bump golangci/golangci-lint-action from 9.0.0 to 9.2.0 #34

Bump golangci/golangci-lint-action from 9.0.0 to 9.2.0

Bump golangci/golangci-lint-action from 9.0.0 to 9.2.0 #34

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
name: Unit Tests
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
test:
strategy:
matrix:
go-version: [1.24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Install Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Test
run: go test ./...