Skip to content

build(deps): bump the github-actions group with 4 updates #1939

build(deps): bump the github-actions group with 4 updates

build(deps): bump the github-actions group with 4 updates #1939

Workflow file for this run

---
name: Trunk Check
on:
push:
branches: [main, next]
pull_request:
branches: [main, next]
schedule:
- cron: "0 6 * * 1"
workflow_dispatch: {}
permissions:
checks: write
contents: read
issues: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
trunk_check:
name: Trunk Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Setup dependencies
uses: ./.trunk/setup-ci
- name: Trunk Check
uses: trunk-io/trunk-action@04ba50e7658c81db7356da96657e6e77f220bfa3 # v1.3.1
with:
cache: false
# Run full link audit on schedule/dispatch, otherwise run standard incremental checks
arguments: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && 'run lychee-audit' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}