Skip to content

Commit 196812f

Browse files
authored
Merge pull request #961 from cmu-delphi/release/v3.2.14
Release v3.2.14
2 parents b0c1038 + 722a63c commit 196812f

File tree

6 files changed

+2819
-42
lines changed

6 files changed

+2819
-42
lines changed

.github/workflows/blog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
Rscript ./dependencies.R
3939
- name: Restore Blogdown Cache
40-
uses: actions/[email protected].1
40+
uses: actions/[email protected].2
4141
with:
4242
path: |
4343
./blogdown

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313

1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 16
17-
- uses: actions/[email protected].1
16+
node-version: 18
17+
- uses: actions/[email protected].2
1818
with:
1919
path: ~/.npm
2020
key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }}

.github/workflows/release_main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 16
23+
node-version: 18
2424
- name: Extract version
2525
id: extract_version
2626
run: node -pe "'::set-output name=version::' + require('./package.json').version"
@@ -45,9 +45,9 @@ jobs:
4545
uses: actions/checkout@v4
4646
- uses: actions/setup-node@v4
4747
with:
48-
node-version: 16
48+
node-version: 18
4949
- name: Cache Node.js modules
50-
uses: actions/[email protected].1
50+
uses: actions/[email protected].2
5151
with:
5252
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
5353
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}

netlify.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ publish = "public"
33
command = "npm ci && hugo --gc --minify -b $DEPLOY_PRIME_URL"
44

55
[context.production.environment]
6-
HUGO_VERSION = "0.87.0"
6+
HUGO_VERSION = "0.121.0"
77
HUGO_ENV = "production"
8-
NODE_VERSION = "14.16.0"
9-
NPM_VERSION = "6.14.11"
8+
NODE_VERSION = "18.20.0"
9+
NPM_VERSION = "10.5.0"
1010

1111
[context.deploy-preview]
1212
command = "npm ci && hugo --gc --minify --buildDrafts --buildFuture -b $DEPLOY_PRIME_URL"
1313

1414
[context.deploy-preview.environment]
15-
HUGO_VERSION = "0.87.0"
15+
HUGO_VERSION = "0.121.0"
1616
HUGO_ENABLEGITINFO = "true"
17-
NODE_VERSION = "14.16.0"
18-
NPM_VERSION = "6.14.11"
17+
NODE_VERSION = "18.20.0"
18+
NPM_VERSION = "10.5.0"
1919

2020
[context.branch-deploy]
2121
command = "npm ci && hugo --gc --minify -b $DEPLOY_PRIME_URL"
2222

2323
[context.branch-deploy.environment]
24-
HUGO_VERSION = "0.87.0"
24+
HUGO_VERSION = "0.121.0"
2525
HUGO_ENABLEGITINFO = "true"
26-
NODE_VERSION = "14.16.0"
27-
NPM_VERSION = "6.14.11"
26+
NODE_VERSION = "18.20.0"
27+
NPM_VERSION = "10.5.0"

0 commit comments

Comments
 (0)