Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2.1'
jobs:
phpunit:
docker:
- image: 'govcmstesting/ci:latest-php8.3-apache'
- image: 'govcmstesting/ci:latest-php8.4-apache'
command: ["apache2-foreground"]
working_directory: /app
steps:
Expand All @@ -21,7 +21,7 @@ jobs:

cypress:
docker:
- image: 'govcmstesting/ci:latest-php8.3-apache'
- image: 'govcmstesting/ci:latest-php8.4-apache'
command: ["apache2-foreground"]
working_directory: /app
steps:
Expand Down
2 changes: 1 addition & 1 deletion .docker/Dockerfile.govcms
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set the PHP and GovCMS versions as arguments
ARG PHP_VERSION=8.3
ARG PHP_VERSION=8.4
ARG GOVCMS_VERSION=10.x-latest
ARG DRUPAL_VERSION=10.3

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: GovCMS CI Tests - Cypress

on: # yamllint disable-line rule:truthy
push:
branches: ["3.x-develop"]
branches: ["4.x-develop"]
pull_request:
branches: ["3.x-develop"]
branches: ["4.x-develop"]

permissions:
contents: read
Expand All @@ -16,7 +16,7 @@ jobs:

services:
web:
image: govcmstesting/ci:latest-php8.3-apache
image: govcmstesting/ci:latest-php8.4-apache
ports:
- 80:80
volumes:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Generate test documentation

on: # yamllint disable-line rule:truthy
push:
branches: ["3.x-develop"]
branches: ["4.x-develop"]
paths: ['phpunit/**']
pull_request:
branches: ["3.x-develop"]
branches: ["4.x-develop"]
paths: ['phpunit/**']

jobs:
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.4'

- name: Run PHP script to generate Markdown
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Builder - PHP Composer

on: # yamllint disable-line rule:truthy
push:
branches: ["3.x-develop"]
branches: ["4.x-develop"]
pull_request:
branches: ["3.x-develop"]
branches: ["4.x-develop"]

permissions:
contents: read
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.4'
extensions: mbstring
coverage: none

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: GovCMS CI Tests - PHPUnit

on: # yamllint disable-line rule:truthy
push:
branches: ["3.x-develop"]
branches: ["4.x-develop"]
pull_request:
branches: ["3.x-develop"]
branches: ["4.x-develop"]

permissions:
contents: read
Expand All @@ -16,7 +16,7 @@ jobs:

services:
web:
image: govcmstesting/ci:latest-php8.3-apache
image: govcmstesting/ci:latest-php8.4-apache
ports:
- 80:80
volumes:
Expand Down
Loading