Skip to content

build(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #515

build(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1

build(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #515

Workflow file for this run

name: "Technical documentation CI"
on:
push: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
setup:
runs-on: ubuntu-latest
outputs:
is_docs_changed: ${{ steps.filter.outputs.docs }}
steps:
- name: "Checkout..."
uses: actions/checkout@v6
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
id: filter
with:
filters: |
docs:
- 'docs/**'
- name: "Print changes..."
run: |
echo "::${{ steps.changes.outputs }}"
permissions:
contents: read
pull-requests: read
techdocs:
name: "TechDocs"
needs: "setup"
if: ${{ needs.setup.outputs.is_docs_changed == 'true' }}
permissions:
contents: read
id-token: write
packages: read
pull-requests: read
uses: coopnorge/github-workflow-techdocs/.github/workflows/techdocs.yaml@v0
build:
needs:
- "setup"
- "techdocs"
if: always()
runs-on: ubuntu-latest
steps:
- run: exit 1
name: "Catch errors"
if: |
needs.techdocs.result == 'failure'
permissions: {}