-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump eclipse-temurin from 16-alpine to 17-alpine (#127)
* chore(deps): bump eclipse-temurin from 16-alpine to 17-alpine Bumps eclipse-temurin from 16-alpine to 17-alpine. --- updated-dependencies: - dependency-name: eclipse-temurin dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * chore: Ignore Dockerfile * chore: バージョンアップ対応用のスクリプトを追加 * chore: Javaのバージョンを17にアップグレード * chore: JDKのアップグレード方法を追記 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jiro4989 <[email protected]>
- Loading branch information
1 parent
943efaa
commit 9f7f31f
Showing
10 changed files
with
51 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM eclipse-temurin:16-alpine | ||
FROM eclipse-temurin:17-alpine | ||
|
||
COPY . /app | ||
WORKDIR /app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
set -eu | ||
|
||
java_version=$1 | ||
|
||
sed -i -E \ | ||
-e "/(source|target)Compatibility/s/[0-9]+/${java_version}/g" \ | ||
-e "/jvmTarget/s/[0-9]+/${java_version}/g" \ | ||
build.gradle | ||
|
||
sed -i -E \ | ||
-e "s/(JAVAFX_VERSION=)[0-9]+/\1${java_version}/g" \ | ||
script/build_for_linux.sh | ||
|
||
find src \ | ||
-name '*.fxml' \ | ||
-exec \ | ||
sed -i -E \ | ||
-e "s^(http://javafx.com/javafx/)[0-9]+^\1${java_version}^" {} \; | ||
|
||
find .github/workflows \ | ||
-name '*.yml' \ | ||
-exec \ | ||
sed -i -E \ | ||
-e "/JAVA(FX)?_VERSION:/s/[0-9]+/${java_version}/g" {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters