Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Apr 3, 2024
1 parent 7fcb62f commit 5b94563
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-on-vtag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4 #see: https://github.com/actions/checkout/releases
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-spec-on-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
name: Run Specifications
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4 #see: https://github.com/actions/checkout/releases
- uses: actions/setup-node@v4 #see: https://github.com/actions/setup-node/releases
with:
node-version: 18
- run: npm install
Expand Down
6 changes: 3 additions & 3 deletions hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
"test": "mocha *.spec.js --timeout 7000 --retries 1"
},
"dependencies": {
"express": "~4.18"
"express": "~4.19.2"
},
"devDependencies": {
"assert-deep-strict-equal": "~1.1",
"assert-deep-strict-equal": "~1.2",
"fetch-json": "~3.3",
"jshint": "~2.13",
"mocha": "~10.2",
"mocha": "~10.4",
"server-listening": "~1.2"
}
}
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,27 +81,27 @@
"test": "mocha spec/*.spec.js --timeout 7000 --retries 1"
},
"dependencies": {
"express": "~4.18",
"express": "~4.19.2",
"http-terminator": "~3.2",
"jsdom": "~24.0"
},
"devDependencies": {
"@types/express": "~4.17",
"@types/jsdom": "~21.1",
"@types/node": "~20.11",
"@typescript-eslint/eslint-plugin": "~6.19",
"@typescript-eslint/parser": "~6.19",
"add-dist-header": "~1.3",
"assert-deep-strict-equal": "~1.1",
"copy-file-util": "~1.1",
"@types/node": "~20.12",
"@typescript-eslint/eslint-plugin": "~7.5",
"@typescript-eslint/parser": "~7.5",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"eslint": "~8.56",
"eslint": "~8.57",
"fetch-json": "~3.3",
"jshint": "~2.13",
"mocha": "~10.2",
"mocha": "~10.4",
"rimraf": "~5.0",
"run-scripts-util": "~1.2",
"typescript": "~5.3",
"w3c-html-validator": "~1.6"
"typescript": "~5.4",
"w3c-html-validator": "~1.7"
}
}

0 comments on commit 5b94563

Please sign in to comment.