Skip to content

Commit

Permalink
Updating GitHub workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Cox authored and Dan Cox committed Sep 2, 2024
1 parent 5846968 commit 3f8de82
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 64 deletions.
59 changes: 1 addition & 58 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,61 +6,4 @@ updates:
interval: daily
open-pull-requests-limit: 10
ignore:
- dependency-name: eslint-plugin-jsdoc
versions:
- 31.4.0
- 31.6.0
- 31.6.1
- 32.0.0
- 32.0.1
- 32.2.0
- 32.3.0
- 32.3.1
- 32.3.2
- dependency-name: underscore
versions:
- 1.12.0
- 1.12.1
- 1.13.0
- dependency-name: y18n
versions:
- 4.0.1
- 4.0.2
- dependency-name: jsdom
versions:
- 16.4.0
- 16.5.1
- 16.5.2
- dependency-name: eslint-plugin-promise
versions:
- 4.3.1
- dependency-name: chai
versions:
- 4.3.0
- 4.3.1
- 4.3.3
- dependency-name: "@babel/preset-env"
versions:
- 7.12.16
- 7.12.17
- 7.13.0
- 7.13.5
- 7.13.8
- 7.13.9
- dependency-name: eslint
versions:
- 7.20.0
- 7.21.0
- dependency-name: eslint-plugin-mocha
versions:
- 8.0.0
- dependency-name: "@babel/core"
versions:
- 7.12.10
- 7.12.13
- dependency-name: mocha
versions:
- 8.2.1
- dependency-name: ejs
versions:
- 3.1.5

6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [22.x]

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@main
with:
fetch-depth: 2

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [22.x]

steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@master
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit 3f8de82

Please sign in to comment.