Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to node 16 #514

Merged
merged 3 commits into from
Oct 19, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build with Hugo
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Fetch the Docsy theme
submodules: recursive
Expand All @@ -32,8 +32,8 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
# NodeJS 12 is maintained until 2022-04-30
node-version: "12.x"
# NodeJS 16 is maintained until 2023-09-11
node-version: "16.x"

- name: Cache dependencies
uses: actions/cache@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_pr_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build with Hugo
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Fetch the Docsy theme
submodules: recursive
Expand All @@ -41,8 +41,8 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
# NodeJS 12 is maintained until 2022-04-30
node-version: "12.x"
# NodeJS 16 is maintained until 2023-09-11
node-version: "16.x"

- name: Cache dependencies
uses: actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on PR
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete_pr_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Build with Hugo
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: "pr_previews"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: ${{ github.repository == 'EGI-Federation/documentation' }}
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Fetch the Docsy theme
submodules: recursive
Expand All @@ -39,8 +39,8 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
# NodeJS 12 is maintained until 2022-04-30
node-version: "12.x"
# NodeJS 16 is maintained until 2023-09-11
node-version: "16.x"

- name: Cache dependencies
uses: actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on PR
ref: ${{ github.event.pull_request.head.sha }}
Expand Down