Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/java11 #188

Merged
merged 23 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
41b9de3
Bump sigstore/cosign-installer from 2.4.1 to 2.5.0 (#128)
dependabot[bot] Jul 25, 2022
c4f5e6c
Bump evryfs/base-ubuntu from jammy-20220531 to jammy-20220801 (#129)
dependabot[bot] Aug 2, 2022
241eb26
Bump sigstore/cosign-installer from 2.5.0 to 2.5.1 (#133)
dependabot[bot] Aug 16, 2022
a4dbee2
Upgrde java
davidkarlsen Aug 28, 2022
bea30eb
Bump evryfs/base-ubuntu from jammy-20220801 to jammy-20220815 (#135)
dependabot[bot] Sep 2, 2022
c7efab9
Bump sigstore/cosign-installer from 2.5.1 to 2.6.0 (#138)
dependabot[bot] Sep 12, 2022
78486d0
Bump sigstore/cosign-installer from 2.6.0 to 2.7.0 (#139)
dependabot[bot] Sep 23, 2022
e79e2ac
Move to java 19
davidkarlsen Sep 27, 2022
92f143a
use a more readable url
davidkarlsen Sep 27, 2022
99779d2
Bump evryfs/base-ubuntu from jammy-20220815 to jammy-20221003 (#142)
dependabot[bot] Oct 5, 2022
bc5da55
Bump sigstore/cosign-installer from 2.7.0 to 2.8.0 (#144)
dependabot[bot] Oct 10, 2022
e13bfe5
Bump sigstore/cosign-installer from 2.8.0 to 2.8.1 (#145)
dependabot[bot] Oct 19, 2022
e8d8880
Bump evryfs/base-ubuntu from jammy-20221003 to jammy-20221020 (#148)
dependabot[bot] Oct 25, 2022
731c7d1
Upgrade java
davidkarlsen Oct 30, 2022
e7a1b77
Bump evryfs/base-ubuntu from jammy-20221020 to jammy-20221101 (#151)
dependabot[bot] Nov 2, 2022
90cd076
Bump evryfs/base-ubuntu from jammy-20221101 to jammy-20221130 (#154)
dependabot[bot] Dec 9, 2022
5d8aa00
Bump docker/build-push-action from 3 to 4 (#158)
dependabot[bot] Apr 20, 2023
7a615fa
Bump evryfs/base-ubuntu from jammy-20221130 to jammy-20230308 (#165)
dependabot[bot] May 4, 2023
d3bdcdc
Bump evryfs/base-ubuntu from jammy-20230308 to jammy-20231128 (#175)
dependabot[bot] Jan 15, 2024
ee8996a
Configure dependency bot for java21 branch (#173)
mohanaraosv Jan 15, 2024
bb7ce0e
Pointing to latest version of jdk11
mohanraosv May 15, 2024
acf11d1
Merge branch 'java11' of https://github.com/evryfs/base-java into fea…
mohanraosv May 15, 2024
8a41727
Removed unwanted jdk prefix
mohanraosv May 15, 2024
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
11 changes: 8 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,23 @@ updates:
directory: "/"
schedule:
interval: daily
target-branch: java17
- package-ecosystem: docker
directory: "/"
schedule:
interval: daily
target-branch: java8
- package-ecosystem: docker
directory: "/"
schedule:
interval: daily
target-branch: java8
target-branch: java11
- package-ecosystem: docker
directory: "/"
schedule:
interval: daily
target-branch: java11
target-branch: java17
- package-ecosystem: docker
directory: "/"
schedule:
interval: daily
target-branch: java21
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM quay.io/evryfs/base-ubuntu:jammy-20231128
LABEL maintainer "David J. M. Karlsen <[email protected]>"
ARG JDK_VERSION=11.0.17+8
ARG DOWNLOAD_URL=https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.17_8.tar.gz
ARG JDK_VERSION=11.0.23+9
ARG DOWNLOAD_URL=https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.23_9.tar.gz
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN mkdir -p /usr/lib/jvm && \
curl -Ls ${DOWNLOAD_URL} | tar xzv -C /usr/lib/jvm && \
Expand Down
Loading