setup-php 2.27.0 → 2.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/src/scripts/darwin.sh +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "setup-php",
|
|
3
|
-
"version": "2.27.
|
|
3
|
+
"version": "2.27.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Setup PHP for use with GitHub Actions",
|
|
6
6
|
"main": "lib/install.js",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/jest": "^29.5.7",
|
|
44
44
|
"@types/node": "^20.8.10",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
46
|
-
"@typescript-eslint/parser": "^6.
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
46
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
47
47
|
"@vercel/ncc": "^0.38.1",
|
|
48
|
-
"eslint": "^8.
|
|
48
|
+
"eslint": "^8.53.0",
|
|
49
49
|
"eslint-config-prettier": "^9.0.0",
|
|
50
50
|
"eslint-plugin-import": "^2.29.0",
|
|
51
51
|
"eslint-plugin-jest": "^27.6.0",
|
|
52
52
|
"eslint-plugin-prettier": "^5.0.1",
|
|
53
53
|
"jest": "^29.7.0",
|
|
54
54
|
"jest-circus": "^29.7.0",
|
|
55
|
-
"nock": "^13.3.
|
|
55
|
+
"nock": "^13.3.8",
|
|
56
56
|
"prettier": "^3.0.3",
|
|
57
57
|
"simple-git-hooks": "^2.9.0",
|
|
58
58
|
"ts-jest": "^29.1.1",
|
package/src/scripts/darwin.sh
CHANGED
|
@@ -126,7 +126,8 @@ patch_brew() {
|
|
|
126
126
|
# Helper function to update the dependencies.
|
|
127
127
|
update_dependencies_helper() {
|
|
128
128
|
dependency=$1
|
|
129
|
-
|
|
129
|
+
[[ "${dependency:0:3}" = "lib" ]] && prefix=lib || prefix="${dependency:0:1}"
|
|
130
|
+
get -q -n "$core_repo/Formula/$prefix/$dependency.rb" "https://raw.githubusercontent.com/Homebrew/homebrew-core/master/Formula/$prefix/$dependency.rb"
|
|
130
131
|
link_libraries "$dependency"
|
|
131
132
|
}
|
|
132
133
|
|
|
@@ -271,6 +272,7 @@ export HOMEBREW_NO_AUTO_UPDATE=1
|
|
|
271
272
|
export HOMEBREW_NO_ENV_HINTS=1
|
|
272
273
|
export HOMEBREW_NO_INSTALL_CLEANUP=1
|
|
273
274
|
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
|
|
275
|
+
export HOMEBREW_NO_INSTALL_FROM_API=1
|
|
274
276
|
|
|
275
277
|
# shellcheck source=.
|
|
276
278
|
. "${scripts:?}"/unix.sh
|