From 79fd88eeb69bbec5b85b59218a68f6dea33d4fa7 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 5 Jan 2023 21:00:43 +0100 Subject: [PATCH 1/2] Use Java 17 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 192ce8fe4..aea1fe86a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,11 +17,11 @@ jobs: id: tag uses: dawidd6/action-get-tag@v1 - - name: Set up JDK 15 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: 15 + java-version: 17 architecture: x64 - name: Cache Maven packages From 6d5ea576062ec9d2c56550dd90b94fedc34fe0e9 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 5 Jan 2023 21:02:26 +0100 Subject: [PATCH 2/2] New release --- README.md | 4 ++-- RELEASE_NOTES.md | 2 +- pom.xml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 44f30e7e5..6fb57e261 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ This way, you can start where you left off. If you remove the container, you nee Download the latest WebGoat release from [https://github.com/WebGoat/WebGoat/releases](https://github.com/WebGoat/WebGoat/releases) ```shell -java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.0.jar +java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.1.jar ``` Click the link in the log to start WebGoat. @@ -125,7 +125,7 @@ For instance running as a jar on a Linux/macOS it will look like this: ```Shell export EXCLUDE_CATEGORIES="CLIENT_SIDE,GENERAL,CHALLENGE" export EXCLUDE_LESSONS="SqlInjectionAdvanced,SqlInjectionMitigations" -java -jar target/webgoat-2023.0-SNAPSHOT.jar +java -jar target/webgoat-2023.1-SNAPSHOT.jar ``` Or in a docker run it would (once this version is pushed into docker hub) look like this: diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b0da20ea7..83260383c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # WebGoat release notes -## Version 2023.0 +## Version 2023.1 With great pleasure, we present you with a new release of WebGoat **2023.0**. Finally, it has been a while. This year starts with a new release of WebGoat. This year we will undoubtedly release more often. From this release on, we began to use a new versioning scheme (https://calver.org/#scheme). diff --git a/pom.xml b/pom.xml index 4e2ab4ccd..056b987c5 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.owasp.webgoat webgoat - 2023.0 + 2023.1 jar WebGoat