chore(deps): bump github/codeql-action from 3.25.12 to 3.26.10 #1096
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: "⭕ Trunk" | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: {} | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write # For trunk to post annotations | |
contents: read # For repo checkout | |
steps: | |
- name: "⤵️ Check out code from GitHub" | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: "🏗 Initialize PNPM" | |
uses: pnpm/action-setup@v4 | |
- name: "🏗 Initialize Node" | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: "🏗 Install Dependencies" | |
run: pnpm i --no-frozen-lockfile | |
- name: "⭕ Trunk Check" | |
uses: trunk-io/trunk-action@86b68ffae610a05105e90b1f52ad8c549ef482c2 # v1 |