-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag '5.23.1' into fix-core-function-flow
- Loading branch information
Showing
752 changed files
with
41,230 additions
and
13,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/[email protected].0 | ||
uses: fkirc/[email protected].1 | ||
with: | ||
concurrent_skipping: always | ||
cancel_others: true | ||
|
@@ -41,19 +41,25 @@ jobs: | |
php-version: '7.4' | ||
tools: composer:v2 | ||
coverage: none | ||
env: | ||
fail-fast: true | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # required for composer to automatically detect root package version | ||
|
||
- name: Get Composer Cache Directories | ||
id: composer-cache | ||
run: | | ||
echo "::set-output name=files_cache::$(composer config cache-files-dir)" | ||
echo "::set-output name=vcs_cache::$(composer config cache-vcs-dir)" | ||
echo "files_cache=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
echo "vcs_cache=$(composer config cache-vcs-dir)" >> $GITHUB_OUTPUT | ||
- name: Generate composer.lock | ||
run: | | ||
composer update --no-install | ||
- name: Cache composer cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
${{ steps.composer-cache.outputs.files_cache }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,19 @@ git config user.email "[email protected]" | |
git config user.name "Automated commit" | ||
git add --all . | ||
git commit -m "Updated Psalm phar to commit ${GITHUB_SHA}" | ||
git push origin master | ||
|
||
tag=${GITHUB_REF/refs\/heads\//} | ||
tag=${tag/refs\/tags\//} | ||
|
||
if [[ "$tag" != 'master' ]] ; then | ||
git tag "$tag" | ||
git push origin "$tag" | ||
fi | ||
|
||
# this script runs on: | ||
# 1. pushes to master | ||
# 2. publishing releases | ||
# | ||
# So we push master to psalm/phar:master | ||
# and tags to psalm/phar:$tag | ||
|
||
git push origin "$tag" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.