Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/api-ci-using-gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
with:
dependency-graph: ${{ github.ref == 'refs/heads/main' && 'generate-and-submit' || 'generate' }}

- name: Setup Node.js 20.x
- name: Setup Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ui-ci-using-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Node.js 20.x
- name: Setup Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x
cache: 'npm'
cache-dependency-path: ${{ matrix.project }}

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ An attempt to create an OAuth 2 service as close and on spec as possible, it att
* contain various types of automation test packs, from api, to browser, to load testing.
* provide test consumers that will demonstrate best practice and the various ways to integrate depending on system architecture.

## Requirements
* Java 21
* Node 24

## Using Gradle
```bash
# To run tests for a project, Gradle will not run tests for area's that have not had any changes.
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
# Common Versions
##
node = "20.19.3"
node = "24.12.0"
ktor = "3.3.3"
kotlin = "2.2.21"

Expand Down
18 changes: 9 additions & 9 deletions user-interface/authentication/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions user-interface/authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"homepage": "/authentication",
"private": true,
"engines": {
"node": "^20"
"node": "^24"
},
"browserslist": [
"> 0.5%",
Expand All @@ -25,7 +25,7 @@
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.12.11",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"cross-env": "^7.0.3",
Expand Down