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
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/configs/tools_schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/step-security/setup-php/release/src/configs/tools_schema.json",
"$id": "https://raw.githubusercontent.com/step-security/setup-php/main/src/configs/tools_schema.json",
"type": "object",
"title": "Tools",
"default": {},
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/tools/ppa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set_base_version_id() {
[[ "$ID" =~ ubuntu|debian ]] && return;
if ! [ -d "$dist_info_dir" ]; then
sudo mkdir -p "$dist_info_dir"
get -q -n "$dist_info_dir"/os_releases.csv https://raw.githubusercontent.com/step-security/setup-php/release/src/configs/os_releases.csv
get -q -n "$dist_info_dir"/os_releases.csv https://raw.githubusercontent.com/step-security/setup-php/main/src/configs/os_releases.csv
fi
for base in ubuntu debian; do
[[ "$ID_LIKE" =~ $base ]] && ID="$base" && VERSION_ID="$(grep -hr -m 1 "$VERSION_CODENAME" /usr/share/distro-info | cut -d ',' -f 1 | cut -d ' ' -f 1)" && break
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export async function getInput(
*/
export async function getManifestURLS(): Promise<string[]> {
return [
'https://raw.githubusercontent.com/step-security/setup-php/release/src/configs/php-versions.json',
'https://raw.githubusercontent.com/step-security/setup-php/main/src/configs/php-versions.json',
'https://setup-php.com/php-versions.json'
];
}
Expand Down
Loading