Skip to content

Commit aea9db5

Browse files
authored
Fix failing GitHub Actions job Check Image Tags (Last Release) (#425)
* Initial plan * Fix Check Image Tags CI failure: update image versions and remove EOL variants - typescript-node: bump image from v4 to v5, remove Node 20 (EOL) - php/php-mariadb: bump image from v3 to v4, remove PHP 8.2 (not in v4) - cpp/cpp-mariadb: bump image from v2 to v3 - alpine: remove Alpine 3.20 (not in last release), add 3.23 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 95f7406 commit aea9db5

11 files changed

Lines changed: 15 additions & 24 deletions

File tree

src/alpine/devcontainer-template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "alpine",
3-
"version": "3.4.0",
3+
"version": "3.5.0",
44
"name": "Alpine",
55
"description": "Simple Alpine container with Git installed.",
66
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/alpine",
@@ -11,11 +11,11 @@
1111
"type": "string",
1212
"description": "Alpine version:",
1313
"proposals": [
14+
"3.23",
1415
"3.22",
15-
"3.21",
16-
"3.20"
16+
"3.21"
1717
],
18-
"default": "3.22"
18+
"default": "3.23"
1919
}
2020
},
2121
"platforms": ["Any"],

src/cpp-mariadb/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/cpp:2-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/cpp:3-${templateOption:imageVariant}
22

33
# Everything below this is needed for installing MariaDB
44
# Instructions are copied and modified from: https://mariadb.com/docs/clients/mariadb-connectors/connector-cpp/install/

src/cpp-mariadb/devcontainer-template.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"id": "cpp-mariadb",
3-
"version": "4.0.0",
4-
"name": "C++ & MariaDB",
3+
"version": "4.1.0",
54
"description": "Develop C++ applications on Linux. Includes Debian C++ build tools.",
65
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp-mariadb",
76
"publisher": "Dev Container Spec Maintainers",

src/cpp/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/cpp:2-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/cpp:3-${templateOption:imageVariant}
22

33
ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE="${templateOption:reinstallCmakeVersionFromSource}"
44

src/cpp/devcontainer-template.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"id": "cpp",
3-
"version": "4.0.0",
4-
"name": "C++",
3+
"version": "4.1.0",
54
"description": "Develop C++ applications on Linux. Includes Debian C++ build tools.",
65
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp",
76
"publisher": "Dev Container Spec Maintainers",

src/php-mariadb/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/php:3-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/php:4-${templateOption:imageVariant}
22

33
# Install MariaDB client
44
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \

src/php-mariadb/devcontainer-template.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "php-mariadb",
3-
"version": "4.3.0",
3+
"version": "4.4.0",
44
"name": "PHP & MariaDB",
55
"description": "Develop PHP applications with MariaDB (MySQL Compatible).",
66
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php-mariadb",
@@ -17,8 +17,6 @@
1717
"8.4-bookworm",
1818
"8.3-trixie",
1919
"8.3-bookworm",
20-
"8.2-trixie",
21-
"8.2-bookworm",
2220
"8-trixie"
2321
],
2422
"default": "8.5-trixie"

src/php/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "PHP",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/php:3-${templateOption:imageVariant}",
6+
"image": "mcr.microsoft.com/devcontainers/php:4-${templateOption:imageVariant}",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

src/php/devcontainer-template.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "php",
3-
"version": "4.3.0",
3+
"version": "4.4.0",
44
"name": "PHP",
55
"description": "Develop PHP based applications. Includes needed tools, extensions, and dependencies.",
66
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/php",
@@ -17,8 +17,6 @@
1717
"8.4-bookworm",
1818
"8.3-trixie",
1919
"8.3-bookworm",
20-
"8.2-trixie",
21-
"8.2-bookworm",
2220
"8-bookworm"
2321
],
2422
"default": "8.5-trixie"

src/typescript-node/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js & TypeScript",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:4-${templateOption:imageVariant}"
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:5-${templateOption:imageVariant}"
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

0 commit comments

Comments
 (0)