Skip to content

chore(deps): bump the github-actions group with 12 updates #645

chore(deps): bump the github-actions group with 12 updates

chore(deps): bump the github-actions group with 12 updates #645

Workflow file for this run

# This GitHub Actions workflow is named "ActionLint".
# It is triggered on push events and manually via the workflow_dispatch event.
#
# Permissions:
# - Read access to repository contents.
# - Write access to pull requests.
#
# Jobs:
# - job-1:
# - Runs on the latest Ubuntu runner.
# - Steps:
# - Harden Runner: Uses the step-security/harden-runner action to audit egress policy.
# - Checkout: Uses the actions/checkout action to check out the repository.
# - ActionLint: Uses the devops-actions/actionlint action to lint the workflow files.
# - Continues on error and sets the ID to action-lint.
name: ActionLint
concurrency:
group: actionlint-${{ github.ref }}
cancel-in-progress: false
on:
push:
paths:
- ".github/**"
pull_request:
paths:
- ".github/**"
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
job-1:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: devops-actions/actionlint@c6744a34774e4e1c1df0ff66bdb07ec7ee480ca0 #v0.1.9
continue-on-error: true
id: action-lint