Skip to content

Bump github/codeql-action from 3.26.8 to 3.26.9 (#194) #344

Bump github/codeql-action from 3.26.8 to 3.26.9 (#194)

Bump github/codeql-action from 3.26.8 to 3.26.9 (#194) #344

Workflow file for this run

name: Test Incoming Changes
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
name: Run Linter and Vet
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.23
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.23.1
- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
- name: Check out code into the Go module directory
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ github.sha }}
- name: Install golangci-lint
run: make install-lint
- name: make lint
run: make lint
- name: make vet
run: make vet