Skip to content

[INFRA] remove buster from supported debian versions #6

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

Merged
merged 2 commits into from
Dec 20, 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
15 changes: 8 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,32 @@ name: "Build on main"
on:
workflow_dispatch:
push:
branches: [ main ]
branches:
- main

jobs:
scheduler:
name: Build Trigger
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 'buster', 'bullseye', 'bookworm' ]
version: [ 'bullseye', 'bookworm' ]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64,linux/arm64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
lint:
strategy:
matrix:
version: [ 'buster', 'bullseye', 'bookworm' ]
version: [ 'bullseye', 'bookworm' ]
runs-on: ubuntu-latest
container: pipelinecomponents/hadolint:latest
steps:
- uses: actions/checkout@v2
- uses: hadolint/hadolint-action@v1.5.0
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: ./src/${{ matrix.version }}/src/Dockerfile
12 changes: 6 additions & 6 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 'buster', 'bullseye', 'bookworm' ]
version: [ 'bullseye', 'bookworm' ]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PHP Base Image (WIP)

This Repo contains the build instructions for the PHP base image (Stretch and Buster). All PHP images should inherit from this image.
This Repo contains the build instructions for the PHP base image (bullseye and bookworm). All PHP images should inherit from this image.

## Documentation

Expand Down
124 changes: 0 additions & 124 deletions src/buster/src/Dockerfile

This file was deleted.

3 changes: 0 additions & 3 deletions src/buster/src/root/etc/apt/preferences.d/debian_main_cmake

This file was deleted.

2 changes: 0 additions & 2 deletions src/buster/src/root/etc/php-src

This file was deleted.

60 changes: 0 additions & 60 deletions src/buster/src/root/usr/local/bin/docker-entrypoint

This file was deleted.

Loading
Loading