chore: Bump axios from 1.7.4 to 1.8.4 #2796
This file contains hidden or 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
# SPDX-License-Identifier: Apache-2.0 | |
name: "PR Title Check" | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- ready_for_review | |
- review_requested | |
- synchronize | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
statuses: write | |
concurrency: | |
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
title-check: | |
name: Title Check | |
runs-on: hiero-local-node-linux-medium | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
egress-policy: audit | |
# Note: After Step-Security is enabled return to step-security/conventional-pr-title-action | |
- name: Check PR Title | |
uses: aslafy-z/conventional-pr-title-action@a0b851005a0f82ac983a56ead5a8111c0d8e044a # v3.2.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |