Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

chore(deps): pin dependencies #54

Merged
merged 1 commit into from
May 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3

- name: Use Node.js v16
uses: actions/setup-node@v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: 16
cache: yarn
Expand All @@ -44,7 +44,7 @@ jobs:
run: yarn docs

- name: Upload Documentation Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
with:
name: docs
path: docs/api.json
Expand All @@ -67,10 +67,10 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3

- name: Use Node.js v16
uses: actions/setup-node@v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: 16
cache: yarn
Expand All @@ -80,13 +80,13 @@ jobs:
run: yarn --immutable

- name: Download Documentation Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
with:
name: docs
path: docs

- name: Checkout Documentation Project
uses: actions/checkout@v3
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
with:
repository: "snowcrystals/docs"
token: ${{ secrets.USER_TOKEN }}
Expand All @@ -107,7 +107,7 @@ jobs:
mv docs/api.json out/docs/${{ env.REPOSITORY }}/${NAME}.json

- name: Commit & Push
uses: nick-fields/retry@v2
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd # v2
with:
max_attempts: 3
retry_on: error
Expand Down