CI bumps #112
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: validate | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- main | |
- release-* | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install deps | |
run: | | |
sudo apt -q update | |
sudo apt -q install libseccomp-dev | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.60 | |
codespell: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install deps | |
# Version of codespell bundled with Ubuntu will become old, so use pip. | |
# OTOH, we want to pin it to specific version to avoid breaking CI. | |
run: pip install --break-system-packages codespell==v2.3.0 | |
- name: run codespell | |
run: codespell |