Skip to content

Commit

Permalink
dependabot for actions and update versions per issue #96
Browse files Browse the repository at this point in the history
  • Loading branch information
mimiflynn committed Jan 9, 2024
1 parent ecc7a09 commit 29fdfb0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/site'
schedule:
interval: 'monthly'

- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,18 @@ permissions:

jobs:
build:
strategy:
matrix:
node-version: [20.10.0]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: './site/package-lock.json'
- run: npm ci
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ defaults:

jobs:
build:
strategy:
matrix:
node-version: [20.10.0]

runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 29fdfb0

Please sign in to comment.