Skip to content

Commit a873822

Browse files
Merge upstream.
2 parents 00583cb + 23a1845 commit a873822

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Cache Composer dependencies
2121
id: composer-cache
22-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
22+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2323

2424
- uses: actions/cache@v4
2525
with:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
Bedrock is an open source project and completely free to use. If you've benefited from our projects and would like to support our future endeavors, please consider [sponsoring Roots](https://github.com/sponsors/roots).
3636

3737
<div align="center">
38-
<a href="https://k-m.com/"><img src="https://cdn.roots.io/app/uploads/km-digital.svg" alt="KM Digital" width="120" height="90"></a> <a href="https://carrot.com/"><img src="https://cdn.roots.io/app/uploads/carrot.svg" alt="Carrot" width="120" height="90"></a> <a href="https://wordpress.com/"><img src="https://cdn.roots.io/app/uploads/wordpress.svg" alt="WordPress.com" width="120" height="90"></a> <a href="https://worksitesafety.ca/careers/"><img src="https://cdn.roots.io/app/uploads/worksite-safety.svg" alt="Worksite Safety" width="120" height="90"></a> <a href="https://www.copiadigital.com/"><img src="https://cdn.roots.io/app/uploads/copia-digital.svg" alt="Copia Digital" width="120" height="90"></a> <a href="https://www.freave.com/"><img src="https://cdn.roots.io/app/uploads/freave.svg" alt="Freave" width="120" height="90"></a>
38+
<a href="https://k-m.com/"><img src="https://cdn.roots.io/app/uploads/km-digital.svg" alt="KM Digital" width="120" height="90"></a> <a href="https://carrot.com/"><img src="https://cdn.roots.io/app/uploads/carrot.svg" alt="Carrot" width="120" height="90"></a> <a href="https://wordpress.com/"><img src="https://cdn.roots.io/app/uploads/wordpress.svg" alt="WordPress.com" width="120" height="90"></a> <a href="https://worksitesafety.ca/careers/"><img src="https://cdn.roots.io/app/uploads/worksite-safety.svg" alt="Worksite Safety" width="120" height="90"></a>
3939
</div>
4040

4141
## Overview

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
"oscarotero/env": "^2.1",
6262
"roots/bedrock-autoloader": "^1.0",
6363
"roots/bedrock-disallow-indexing": "^2.0",
64-
"roots/wordpress": "^6.4.1",
64+
<<<<<<< HEAD
65+
"roots/wordpress": "^6.5.3",
6566
"roots/wp-config": "^1.0.0",
6667
"roots/wp-password-bcrypt": "^1.1.0",
6768
"wpackagist-theme/twentytwentyfour": "^1.0",
68-
"wpackagist-theme/frost": "^1.0",
6969
"sterner-stuff/made-of-sterner-stuff": "^11.0",
7070
"kinsta/kinsta-mu-plugins": "dev-sterner-stuff",
7171
"wpackagist-plugin/mailgun": ">=1.9",

config/application.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
use Roots\WPConfig\Config;
1212
use function Env\env;
1313

14+
// USE_ENV_ARRAY + CONVERT_* + STRIP_QUOTES
15+
Env\Env::$options = 31;
16+
1417
/**
1518
* Directory containing all of the site's files
1619
*
@@ -34,7 +37,7 @@
3437
? ['.env', '.env.local']
3538
: ['.env'];
3639

37-
$dotenv = Dotenv\Dotenv::createUnsafeImmutable($root_dir, $env_files, false);
40+
$dotenv = Dotenv\Dotenv::createImmutable($root_dir, $env_files, false);
3841

3942
$dotenv->load();
4043

0 commit comments

Comments
 (0)