Skip to content

Commit

Permalink
Alpine 3.19 is the latest version for php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
en-jschuetze authored Dec 8, 2023
1 parent 429004a commit c607cc3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/fitness-functions-release-8.3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ on:

jobs:
configured-alpine-is-latest-version:
name: "Ensure that Alpine 3.18.* is the latest alpine version"
name: "Ensure that Alpine 3.19.0 is the latest 3.19 alpine version"
env:
LATEST_ALPINE_RELEASE: "3.18."
LATEST_ALPINE_RELEASE: "3.19.0"
runs-on: ubuntu-latest
steps:
- name: Execute
run: >
docker run --rm alpine cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
docker run --pull always --rm alpine:3.19 cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
php83-is-not-the-default-php-on-edge:
name: "We need to symlink php83 until php 8.3 is the default php"
runs-on: ubuntu-latest
steps:
- name: Execute
run: >
! docker run --rm alpine:edge sh -c 'apk -U add php83 && php -v'
! docker run --pull always --rm alpine:3.19 sh -c 'apk -U add php83 && php -v'
packages-not-available-on-alpine-for-release-8-3:
name: Package not available on alpine for php 8.3 in community, yet
Expand All @@ -37,4 +37,4 @@ jobs:
- php83-pecl-imagick
steps:
- name: Execute
run: "! docker run --rm alpine:edge apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"
run: "! docker run --pull always --rm alpine:3.19 apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"

0 comments on commit c607cc3

Please sign in to comment.