1010
1111env :
1212 BASE_IMAGE_STABILITY_TAG : 2.18.4
13+ MARIADB118 : ' 11.8.5'
1314 MARIADB114 : ' 11.4.9'
1415 MARIADB1011 : ' 10.11.15'
1516 MARIADB106 : ' 10.6.24'
16- MARIADB105 : ' 10.5.29'
1717
1818jobs :
19- mariadb114 -build :
19+ mariadb118 -build :
2020 strategy :
2121 matrix :
2222 arch :
@@ -29,38 +29,38 @@ jobs:
2929 runner : ubuntu-24.04-arm
3030 runs-on : ${{ matrix.runner }}
3131 steps :
32- - uses : actions/checkout@v4
32+ - uses : actions/checkout@v5
3333 - uses : docker/login-action@v3
3434 with :
3535 username : ${{ secrets.DOCKER_USERNAME }}
3636 password : ${{ secrets.DOCKER_PASSWORD }}
3737 - name : build and push
3838 env :
39- MARIADB_VER : ${{ env.MARIADB114 }}
39+ MARIADB_VER : ${{ env.MARIADB118 }}
4040 ARCH : ${{ matrix.arch }}
41- working-directory : 11
41+ working-directory : ' 11 '
4242 run : |
4343 make
4444 make test
4545 make push
46- mariadb114 -push :
46+ mariadb118 -push :
4747 runs-on : ubuntu-latest
4848 needs :
49- - mariadb114 -build
49+ - mariadb118 -build
5050 steps :
51- - uses : actions/checkout@v4
51+ - uses : actions/checkout@v5
5252 - uses : docker/login-action@v3
5353 with :
5454 username : ${{ secrets.DOCKER_USERNAME }}
5555 password : ${{ secrets.DOCKER_PASSWORD }}
5656 - uses : ./.github/actions
5757 with :
58- version : ${{ env.MARIADB114 }}
58+ version : ${{ env.MARIADB118 }}
5959 workdir : 11
6060 latest : true
6161 latest_major : true
62-
63- mariadb1011 -build :
62+
63+ mariadb114 -build :
6464 strategy :
6565 matrix :
6666 arch :
@@ -73,37 +73,36 @@ jobs:
7373 runner : ubuntu-24.04-arm
7474 runs-on : ${{ matrix.runner }}
7575 steps :
76- - uses : actions/checkout@v4
76+ - uses : actions/checkout@v5
7777 - uses : docker/login-action@v3
7878 with :
7979 username : ${{ secrets.DOCKER_USERNAME }}
8080 password : ${{ secrets.DOCKER_PASSWORD }}
8181 - name : build and push
8282 env :
83- MARIADB_VER : ${{ env.MARIADB1011 }}
83+ MARIADB_VER : ${{ env.MARIADB114 }}
8484 ARCH : ${{ matrix.arch }}
85- working-directory : 10
85+ working-directory : ' 11 '
8686 run : |
8787 make
8888 make test
8989 make push
90- mariadb1011 -push :
90+ mariadb114 -push :
9191 runs-on : ubuntu-latest
9292 needs :
93- - mariadb1011 -build
93+ - mariadb114 -build
9494 steps :
95- - uses : actions/checkout@v4
95+ - uses : actions/checkout@v5
9696 - uses : docker/login-action@v3
9797 with :
9898 username : ${{ secrets.DOCKER_USERNAME }}
9999 password : ${{ secrets.DOCKER_PASSWORD }}
100100 - uses : ./.github/actions
101101 with :
102- version : ${{ env.MARIADB1011 }}
103- workdir : 10
104- latest_major : true
102+ version : ${{ env.MARIADB114 }}
103+ workdir : 11
105104
106- mariadb106 -build :
105+ mariadb1011 -build :
107106 strategy :
108107 matrix :
109108 arch :
@@ -116,36 +115,37 @@ jobs:
116115 runner : ubuntu-24.04-arm
117116 runs-on : ${{ matrix.runner }}
118117 steps :
119- - uses : actions/checkout@v4
118+ - uses : actions/checkout@v5
120119 - uses : docker/login-action@v3
121120 with :
122121 username : ${{ secrets.DOCKER_USERNAME }}
123122 password : ${{ secrets.DOCKER_PASSWORD }}
124123 - name : build and push
125124 env :
126- MARIADB_VER : ${{ env.MARIADB106 }}
125+ MARIADB_VER : ${{ env.MARIADB1011 }}
127126 ARCH : ${{ matrix.arch }}
128- working-directory : 10
127+ working-directory : ' 10 '
129128 run : |
130129 make
131130 make test
132131 make push
133- mariadb106 -push :
132+ mariadb1011 -push :
134133 runs-on : ubuntu-latest
135134 needs :
136- - mariadb106 -build
135+ - mariadb1011 -build
137136 steps :
138- - uses : actions/checkout@v4
137+ - uses : actions/checkout@v5
139138 - uses : docker/login-action@v3
140139 with :
141140 username : ${{ secrets.DOCKER_USERNAME }}
142141 password : ${{ secrets.DOCKER_PASSWORD }}
143142 - uses : ./.github/actions
144143 with :
145- version : ${{ env.MARIADB106 }}
144+ version : ${{ env.MARIADB1011 }}
146145 workdir : 10
146+ latest_major : true
147147
148- mariadb105 -build :
148+ mariadb106 -build :
149149 strategy :
150150 matrix :
151151 arch :
@@ -158,31 +158,31 @@ jobs:
158158 runner : ubuntu-24.04-arm
159159 runs-on : ${{ matrix.runner }}
160160 steps :
161- - uses : actions/checkout@v4
161+ - uses : actions/checkout@v5
162162 - uses : docker/login-action@v3
163163 with :
164164 username : ${{ secrets.DOCKER_USERNAME }}
165165 password : ${{ secrets.DOCKER_PASSWORD }}
166166 - name : build and push
167167 env :
168- MARIADB_VER : ${{ env.MARIADB105 }}
168+ MARIADB_VER : ${{ env.MARIADB106 }}
169169 ARCH : ${{ matrix.arch }}
170- working-directory : 10
170+ working-directory : ' 10 '
171171 run : |
172172 make
173173 make test
174174 make push
175- mariadb105 -push :
175+ mariadb106 -push :
176176 runs-on : ubuntu-latest
177177 needs :
178- - mariadb105 -build
178+ - mariadb106 -build
179179 steps :
180- - uses : actions/checkout@v4
180+ - uses : actions/checkout@v5
181181 - uses : docker/login-action@v3
182182 with :
183183 username : ${{ secrets.DOCKER_USERNAME }}
184184 password : ${{ secrets.DOCKER_PASSWORD }}
185185 - uses : ./.github/actions
186186 with :
187- version : ${{ env.MARIADB105 }}
187+ version : ${{ env.MARIADB106 }}
188188 workdir : 10
0 commit comments