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
2 changes: 1 addition & 1 deletion .github/workflows/verify-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
fail-fast: false
matrix:
version: [ 8, 11, 17, 20 ]
os_version: ["3.14", "3.15", "3.16", "3.17"]
os_version: ["3.15", "3.16", "3.17"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
22 changes: 0 additions & 22 deletions 11/jdk/alpine/3.14/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 17/jdk/alpine/3.14/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 20/jdk/alpine/3.14/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 8/jdk/alpine/3.14/Dockerfile

This file was deleted.

21 changes: 0 additions & 21 deletions 8/jre/alpine/3.14/Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion bin/apply-template.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def process_template_files(major_version, version, platform):
input_parameter['MAJOR_VERSION'] = major_version
if platform == 'alpine':
# Update .github/workflows/verify-images.yml as well when alpine versions changes
os_versions = ['3.14', '3.15', '3.16', '3.17']
os_versions = ['3.15', '3.16', '3.17']
try:
shutil.rmtree(f"{major_version}/jdk/{platform}")
shutil.rmtree(f"{major_version}/jre/{platform}")
Expand Down
2 changes: 1 addition & 1 deletion bin/tag-generator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json

DEFAULT_ALPINE_VERSION = '3.17'
ALPINE_VERSIONS = ['3.14', '3.15', '3.16', '3.17']
ALPINE_VERSIONS = ['3.15', '3.16', '3.17']

LTS_VERSIONS = [ "8", "11", "17"]

Expand Down