Skip to content
Open
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 .github/workflows/composer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get composer cache directory
id: composer-cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout HEAD
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
needs: [ "create-signed-phar-file" ]
steps:
- name: Checkout HEAD
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DIST_REPO_DEPLOY_KEY }}
Expand All @@ -165,7 +165,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout HEAD
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download artifacts
uses: actions/download-artifact@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phar_build_and_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
php-version: '7.4'

- name: Checkout PR
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout HEAD
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'push'

- name: Check Security
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
php-version: 7.4

- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get composer cache directory
id: composer-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/php_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout HEAD
uses: actions/checkout@v5
uses: actions/checkout@v6
if: github.event_name == 'push'
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
php-version: ${{ matrix.php-versions }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Get composer cache directory
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
php-version: 7.4

- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Solves the not "You are not currently on a branch" problem, see https://github.com/actions/checkout/issues/124#issuecomment-586664611
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-magento-open-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Linux Setup
run: ./.github/workflows/scripts/linux-setup.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-openmage-20.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Linux Setup
run: ./.github/workflows/scripts/linux-setup.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-openmage-20.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Linux Setup
run: ./.github/workflows/scripts/linux-setup.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-openmage-20.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Linux Setup
run: ./.github/workflows/scripts/linux-setup.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-openmage-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Linux Setup
run: ./.github/workflows/scripts/linux-setup.sh
Expand Down
Loading