Skip to content

[skip-release] Update actions/checkout action to v6 #8

[skip-release] Update actions/checkout action to v6

[skip-release] Update actions/checkout action to v6 #8

Workflow file for this run

name: lint-test-build-push
on:
push:
paths-ignore:
- "**/*.md"
- "renovate.json5"
branches:
- "**"
tags:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
with:
go-version: ">=1.25.0"
- name: golangci-lint
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9
with:
version: latest
- name: Test with the Go CLI
run: go test -v -race ./...
build-push:
needs: [lint-test]
uses: libops/actions/.github/workflows/build-push.yml@main
permissions:
contents: read
packages: write
id-token: write
secrets: inherit