Skip to content

Bump github/codeql-action from 3.26.11 to 3.26.12 #692

Bump github/codeql-action from 3.26.11 to 3.26.12

Bump github/codeql-action from 3.26.11 to 3.26.12 #692

Workflow file for this run

---
name: Go
on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
permissions: {}
jobs:
build:
name: Build with Go
runs-on: ubuntu-latest
steps:
- name: Set REPOSITORY
run: echo "REPOSITORY=${GITHUB_REPOSITORY#*/}" >> "${GITHUB_ENV}"
- name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: "stable"
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Get dependencies
run: make dep
- name: Vet
run: make vet
- name: Static Check
run: make staticcheck
- name: Build
run: make compile
- name: Test
run: make test
- name: Upload artifacts
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: ${{ env.REPOSITORY }}
path: bin/