Skip to content

Commit

Permalink
Update to node 16 (#514)
Browse files Browse the repository at this point in the history
* github actions: bump to actions/chekout v3 to use nodejs 16
* github actions: bump to nodejs 16
  • Loading branch information
gwarf authored Oct 19, 2022
1 parent 1f2459a commit 8b8e9ea
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
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

0 comments on commit 8b8e9ea

Please sign in to comment.