Bump the all group across 1 directory with 3 updates #72
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2026 Kalle Fagerberg | |
| # | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: ci | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| zizmor: | |
| name: Run zizmor 🌈 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Run zizmor 🌈 | |
| uses: zizmorcore/zizmor-action@b1d7e1fb5de872772f31590499237e7cce841e8e # v0.5.3 | |
| reuse: | |
| name: REUSE Compliance Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: fsfe/reuse-action@676e2d560c9a403aa252096d99fcab3e1132b0f5 # v6.0.0 | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: setup go | |
| uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # 6.4.0 | |
| with: | |
| go-version-file: go.mod | |
| - name: install gotestsum | |
| run: go install gotest.tools/gotestsum@latest | |
| - name: run gotestsum | |
| env: | |
| FORCE_COLOR: "true" | |
| run: gotestsum ./... | |
| - uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1 | |
| - name: try build | |
| run: | | |
| mise run build | |
| - name: Git diff | |
| run: git diff --exit-code |