Skip to content

Bump actions/upload-artifact from 4.3.6 to 4.4.0 (#187) #332

Bump actions/upload-artifact from 4.3.6 to 4.4.0 (#187)

Bump actions/upload-artifact from 4.3.6 to 4.4.0 (#187) #332

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.22
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.22.6
- 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