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

Removed 3.16 from Alpine for EOL #209

Merged
merged 1 commit into from
Jun 10, 2024
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 @@ -100,7 +100,7 @@ jobs:
fail-fast: false
matrix:
version: [ 8, 11, 17, 21, 22 ]
os_version: ["3.16", "3.17", "3.18", "3.19"]
os_version: ["3.17", "3.18", "3.19"]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
22 changes: 0 additions & 22 deletions 11/jdk/alpine/3.16/Dockerfile

This file was deleted.

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

This file was deleted.

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

This file was deleted.

22 changes: 0 additions & 22 deletions 22/jdk/alpine/3.16/Dockerfile

This file was deleted.

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

This file was deleted.

21 changes: 0 additions & 21 deletions 8/jre/alpine/3.16/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.16', '3.17', '3.18', '3.19']
os_versions = ['3.17', '3.18', '3.19']
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.19'
ALPINE_VERSIONS = ['3.16', '3.17', '3.18', '3.19']
ALPINE_VERSIONS = ['3.17', '3.18', '3.19']

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