Skip to content

chore(deps): update node.js to v24.14.1 #578

chore(deps): update node.js to v24.14.1

chore(deps): update node.js to v24.14.1 #578

Workflow file for this run

name: 'Pull Request Checks'
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
changes:
uses: ./.github/workflows/wc-changes.yml
with:
gh-app-id: ${{ vars.BOT_APP_ID }}
secrets:
gh-app-private-key: ${{ secrets.BOT_PRIVATE_KEY }}
status-check:
runs-on: ubuntu-24.04-arm
needs:
- semantic-pull-request
- action
permissions: { }
if: failure()
steps:
- run: exit 1
semantic-pull-request:
name: Semantic Pull Request
runs-on: ubuntu-24.04-arm
needs:
- changes
if: needs.changes.outputs.semantic_pr == 'true'
steps:
# https://github.com/marketplace/actions/create-github-app-token
- name: Create GitHub App Token
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
# https://github.com/marketplace/actions/semantic-pull-request
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
action:
runs-on: ubuntu-24.04-arm
needs: changes
if: needs.changes.outputs.action == 'true'
permissions:
checks: "write"
contents: "read"
pull-requests: "write"
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# https://github.com/marketplace/actions/create-github-app-token
- name: Create GitHub App Token
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
# https://github.com/marketplace/actions/actionlint-with-reviewdog
- uses: reviewdog/action-actionlint@0d952c597ef8459f634d7145b0b044a9699e5e43 # v1.71.0
with:
github_token: ${{ steps.app-token.outputs.token }}
fail_level: error
filter_mode: nofilter
level: warning
reporter: github-pr-review