Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Feb 14, 2024
1 parent 06cbe60 commit 250bf15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/actions/diffs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ outputs:
runs:
using: composite
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Detect Changes
uses: dorny/paths-filter@v2.11.1
uses: dorny/paths-filter@v3
id: diff
with:
filters: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
Expand All @@ -49,9 +49,9 @@ jobs:
cp -f $GITHUB_WORKSPACE/docs/ci/package.json.ci $GITHUB_WORKSPACE/docs/package.json
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20.5.1
cache: pnpm
cache-dependency-path: "docs/pnpm-lock.yaml"

Expand All @@ -69,4 +69,4 @@ jobs:
with:
# This is the branch where the docs are deployed to
branch: gh-pages
folder: docs/src/.vuepress/dist
folder: docs/src/.vuepress/dist

0 comments on commit 250bf15

Please sign in to comment.