Skip to content

chore(deps): update dependency ubuntu to v24 #483

chore(deps): update dependency ubuntu to v24

chore(deps): update dependency ubuntu to v24 #483

Workflow file for this run

name: 'Checks'
on:
pull_request:
branches:
- main
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
changed:
uses: ./.github/workflows/wc-changed.yml
check-actions:
runs-on: ubuntu-24.04
needs: changed
if: needs.changed.outputs.actions == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
# https://github.com/marketplace/actions/actionlint-with-reviewdog
- uses: reviewdog/action-actionlint@15a7a477ab5ab768a41c39b2c53970bf151c73f3 # v1.56.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
check-docs:
runs-on: ubuntu-24.04
needs: changed
if: needs.changed.outputs.docs == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@f8dfbcc150159126838e44b882bf34bd98fd90f3 # v2.1.0
- name: Install deps
run: bun install
- name: Build
run: bun run build
status-check:
runs-on: ubuntu-24.04
needs:
- check-actions
- check-docs
permissions: { }
if: failure()
steps:
- run: exit 1