⬆️upgrade(ci): Bump actions/checkout from 4.1.3 to 4.1.5 in /.github/workflows #44
Workflow file for this run
This file contains 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-FileCopyrightText: 2022 WebReady Projects <https://github.com/wr-projects/> | ||
# | ||
# SPDX-License-Identifier: MIT | ||
--- | ||
name: Pipeline - GHPages | ||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/wiki.yml' | ||
branches: | ||
- main | ||
pull_request: | ||
paths: | ||
- 'docs/**' | ||
- '.github/workflows/wiki.yml' | ||
branches: | ||
- main | ||
jobs: | ||
lint-docs: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node: [16.10.0] | ||
steps: | ||
# More info: https://github.com/step-security/harden-runner. | ||
- name: Harden Runner | ||
id: harden_runner | ||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 | ||
with: | ||
egress-policy: audit | ||
# More info: https://github.com/actions/checkout. | ||
- name: Checkout & Authentication | ||
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
# | ||
- name: Corepack Enable | ||
run: corepack enable | ||
- name: Use Node.js v16 | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 16.10.0 | ||
cache: pnpm | ||
- name: Install Dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Lint (docs) | ||
run: pnpm lint:docs | ||
wiki: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# More info: https://github.com/step-security/harden-runner. | ||
- name: Harden Runner | ||
id: harden_runner | ||
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 | ||
with: | ||
egress-policy: audit | ||
# More info: https://github.com/peter-murray/workflow-application-token-action. | ||
- name: Get token | ||
id: get_token | ||
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3 | ||
with: | ||
application_id: ${{ secrets.ID_CHECKDEPSBOT }} | ||
application_private_key: ${{ secrets.PEM_CHECKDEPSBOT }} | ||
# More info: https://github.com/actions/checkout. | ||
- name: Checkout & Authentication | ||
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
- name: Check GitHub Pages Status | ||
uses: crazy-max/ghaction-github-status@ | ||
Check failure on line 89 in .github/workflows/gh-pages.yml GitHub Actions / Pipeline - GHPagesInvalid workflow file
|
||
with: | ||
pages_threshold: major_outage | ||
- name: Deploy | ||
if: success() | ||
uses: crazy-max/ghaction-github-pages@ | ||
with: | ||
target_branch: gh-pages | ||
build_dir: public | ||
env: | ||
GITHUB_TOKEN: |