From 8023c897e0eba685539a1cc8387b46d606d5053e Mon Sep 17 00:00:00 2001 From: Erick Hitter <gitlab-s@mxs.ethitter.com> Date: Thu, 15 May 2025 19:44:45 +0000 Subject: [PATCH 1/2] Remove deprecated template https://gitlab.com/gitlab-org/gitlab/-/issues/439157 --- plugins/templates/gitlab-tools.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/templates/gitlab-tools.yml b/plugins/templates/gitlab-tools.yml index 75251e8..a9999a7 100644 --- a/plugins/templates/gitlab-tools.yml +++ b/plugins/templates/gitlab-tools.yml @@ -1,6 +1,5 @@ include: - template: Security/Dependency-Scanning.gitlab-ci.yml - - template: Security/License-Scanning.gitlab-ci.yml - template: Security/SAST.gitlab-ci.yml - template: Security/Secret-Detection.gitlab-ci.yml -- GitLab From 7eff15f1cf3610040adb704436500ea207650bbe Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Thu, 15 May 2025 12:47:58 -0700 Subject: [PATCH 2/2] PHP 5.6 is _very_ dead (EOL for years) --- plugins/templates/matrix-redis.yml | 10 ---------- plugins/templates/matrix.yml | 9 --------- 2 files changed, 19 deletions(-) diff --git a/plugins/templates/matrix-redis.yml b/plugins/templates/matrix-redis.yml index 3cf1c9a..e01f127 100644 --- a/plugins/templates/matrix-redis.yml +++ b/plugins/templates/matrix-redis.yml @@ -1,13 +1,3 @@ -PHPunit:PHP5.6:MySQL:Redis: - stage: test - image: containers.ethitter.com:443/docker/images/php:5.6 - services: - - mysql:5.6 - - redis:alpine - script: - - find . -type "f" -iname "*.php" | xargs -L "1" php -l - - phpunit - PHPunit:PHP7.0:MySQL:Redis: stage: test image: containers.ethitter.com:443/docker/images/php:7.0 diff --git a/plugins/templates/matrix.yml b/plugins/templates/matrix.yml index 6240fae..3783ee9 100644 --- a/plugins/templates/matrix.yml +++ b/plugins/templates/matrix.yml @@ -1,12 +1,3 @@ -PHPunit:PHP5.6:MySQL: - stage: test - image: containers.ethitter.com:443/docker/images/php:5.6 - services: - - mysql:5.6 - script: - - find . -type "f" -iname "*.php" | xargs -L "1" php -l - - phpunit - PHPunit:PHP7.0:MySQL: stage: test image: containers.ethitter.com:443/docker/images/php:7.0 -- GitLab