File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 7
7
schedule :
8
8
- cron : ' 15 10 * * *' # each day at 10:15 UTC
9
9
10
-
11
10
jobs :
12
11
configured-alpine-is-latest-version :
13
12
name : " Ensure that Alpine is the latest alpine version"
14
13
env :
15
- LATEST_ALPINE_RELEASE : " 3.19.6 "
14
+ LATEST_ALPINE_RELEASE : " 3.21.2 "
16
15
runs-on : ubuntu-latest
17
16
steps :
18
17
- name : Execute
19
18
run : >
20
- docker run --rm alpine:3.19 cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
19
+ docker run --rm alpine:3.21 cat /etc/os-release | grep $LATEST_ALPINE_RELEASE
21
20
22
21
configured-go-version-is-required-one :
23
- name : " Ensure that Go is the version required by frankenphp"
22
+ name : " Ensure that Go 1.23 is the version required by frankenphp"
24
23
runs-on : ubuntu-latest
25
24
steps :
26
25
- name : Execute
27
26
run : >
28
- curl -sS https://github.com/dunglas/frankenphp/blob/v1.0.3 /go.mod | grep "go 1.21 "
27
+ curl -sS https://github.com/dunglas/frankenphp/blob/main /go.mod | grep "go1.23 "
29
28
30
29
packages-not-available-on-alpine-for-release-8-2-zts :
31
30
name : Package not available on alpine for php 8.2 zts in edge community, yet
46
45
- phpzts82-pecl-xdebug
47
46
steps :
48
47
- name : Execute
49
- run : " ! docker run --rm alpine:3.19 apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"
48
+ run : " ! docker run --rm alpine:3.21 apk --no-cache search ${{ matrix.package }} | grep ${{ matrix.package }}"
You can’t perform that action at this time.
0 commit comments