Skip to content

Commit

Permalink
Remove Alpine 3.17 EOL, add 3.21 support later
Browse files Browse the repository at this point in the history
  • Loading branch information
Min Choi authored and mmm-choi committed Dec 11, 2024
1 parent 043a4ed commit 6da507f
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 135 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/verify-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
fail-fast: false
matrix:
version: [ 8, 11, 17, 21, 23 ]
os_version: ["3.17", "3.18", "3.19", "3.20"]
os_version: ["3.18", "3.19", "3.20"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
22 changes: 0 additions & 22 deletions 11/jdk/alpine/3.17/Dockerfile

This file was deleted.

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

This file was deleted.

22 changes: 0 additions & 22 deletions 21/jdk/alpine/3.17/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions 23/jdk/alpine/3.17/Dockerfile

This file was deleted.

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

This file was deleted.

21 changes: 0 additions & 21 deletions 8/jre/alpine/3.17/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.17', '3.18', '3.19', '3.20']
os_versions = ['3.18', '3.19', '3.20']
try:
shutil.rmtree(f"{major_version}/jdk/{platform}")
shutil.rmtree(f"{major_version}/jre/{platform}")
Expand Down
4 changes: 2 additions & 2 deletions bin/tag-generator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json

DEFAULT_ALPINE_VERSION = '3.20'
ALPINE_VERSIONS = ['3.17', '3.18', '3.19', '3.20']
DEFAULT_ALPINE_VERSION = '3.21'
ALPINE_VERSIONS = ['3.18', '3.19', '3.20']

def generate_tags(key, version):
update = version.split('.')[1] if (key == '8') else version.split('.')[2]
Expand Down

0 comments on commit 6da507f

Please sign in to comment.