Skip to content

Commit

Permalink
ci: bump node version (#3886)
Browse files Browse the repository at this point in the history
* ci: bump node version

* updates
  • Loading branch information
julienrbrt committed Jan 16, 2024
1 parent 1db7d59 commit 53b6c24
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,10 @@ updates:
- "javascript"
- "skip-changelog"
open-pull-requests-limit: 0

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 0
6 changes: 3 additions & 3 deletions .github/workflows/docs-deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build_and_deploy:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
if: "${{ github.event.pull_request.head.repo.full_name == github.repository }}"
runs-on: ubuntu-latest

steps:
Expand All @@ -21,9 +21,9 @@ jobs:
key: node_modules-${{ hashFiles('**/yarn.lock') }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
cache: yarn
cache-dependency-path: docs/yarn.lock

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
consecutiveness:
runs-on: ubuntu-latest
steps:
- uses: ignite/consecutive-workflow-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: ignite/consecutive-workflow-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}

build_and_deploy:
runs-on: ubuntu-latest
needs: [ consecutiveness ]
needs: [consecutiveness]

steps:
- name: Checkout
Expand All @@ -28,9 +28,9 @@ jobs:
key: node_modules-${{ hashFiles('**/yarn.lock') }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
cache: yarn
cache-dependency-path: docs/yarn.lock

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gen-docs-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
key: node_modules-${{ hashFiles('**/yarn.lock') }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
cache: yarn
cache-dependency-path: docs/yarn.lock

Expand Down

0 comments on commit 53b6c24

Please sign in to comment.