From e05137385129f034f2cd82ba0e0003bd54f5eea4 Mon Sep 17 00:00:00 2001 From: Brandon Date: Fri, 24 Apr 2020 13:22:10 -0500 Subject: [PATCH] fix(ci): Change 7.4 workflow to latest (and maybe not fail) --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5bbcac5118..f6690e0321 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,9 +3,9 @@ version: 2.1 orbs: bedrock: executors: - php-74: + php-latest: docker: - - image: 'circleci/php:7.4-stretch' + - image: 'circleci/php:latest' php-73: docker: - image: 'circleci/php:7.3-stretch' @@ -39,8 +39,8 @@ workflows: build: jobs: - bedrock/build-php: - name: build-php-74 - executor: bedrock/php-74 + name: build-php-latest + executor: bedrock/php-latest - bedrock/build-php: name: build-php-73 executor: bedrock/php-73