Skip to content

chore(deps): update dependency npm-check-updates to v22.2.7 #3623

chore(deps): update dependency npm-check-updates to v22.2.7

chore(deps): update dependency npm-check-updates to v22.2.7 #3623

Workflow file for this run

name: ci
on:
push:
branches:
- "**"
workflow_dispatch:
workflow_run:
workflows: [ "update-snapshots" ]
types:
- completed
defaults:
run:
# NOTE: A bit stricter than the default bash options used by GitHub Actions
# (bash --noprofile --norc -e -o pipefail {0})
shell: bash --noprofile --norc -euo pipefail {0}
# NOTE: Set concurrency for the current workflow to 1
concurrency: ci-${{ github.ref }}-${{ github.workflow }}
jobs:
build-and-release:
timeout-minutes: 60
runs-on: ubuntu-24.04
permissions:
id-token: write # Required for OIDC
contents: write
pull-requests: write
issues: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: capralifecycle/actions-lib/check-runtime-dependencies@720c52304c0cbc65a26c18f55a8f182cc0d33d84 # v1.7.1
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: ".node-version"
cache: "npm"
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
id: setup-python
with:
python-version-file: ".python-version"
- name: python - setup uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: true
- name: build and verify
run: make ci
- name: conditionally semantic release
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run semantic-release