Skip to content

Commit d95cb07

Browse files
committed
- update github actions versions
- set npm version 10 match tech-docs-gem
1 parent e26210b commit d95cb07

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/dependency-review.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
- name: 'Dependency Review'
14-
uses: actions/dependency-review-action@v4
14+
uses: actions/dependency-review-action@v6
1515
with:
1616
severity-threshold: high

.github/workflows/test.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0 # middleman init wants to clone the repo, so we need full history
1414

15-
- uses: actions/setup-node@v2
15+
- uses: actions/setup-node@v6
1616
with:
17-
node-version: '14'
17+
node-version-file: '.nvmrc'
18+
cache: 'npm'
1819

1920
- uses: ruby/setup-ruby@v1
2021
with:
22+
ruby-version-file: '.ruby-version'
2123
bundler-cache: true
2224

2325
- run: ./create-test-site.sh

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

0 commit comments

Comments
 (0)