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/built-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo "::warning title=Workflow Deprecated::This workflow (built-branch) is deprecated and will be removed in a future version. Please migrate to the action-release workflow (https://github.com/alleyinteractive/action-release)."
shell: bash

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

- name: Clear previous vendor
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/built-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "::warning title=Workflow Deprecated::This workflow (built-release) is deprecated and will be removed in a future version. Please migrate to the action-release workflow (https://github.com/alleyinteractive/action-release)."
shell: bash

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN || github.token }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
VERSION_NAME: '${{ needs.extract-version.outputs.package_version }}'
VERSION_TAG: '${{ needs.extract-version.outputs.tag_name }}'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN || github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/built-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo "::warning title=Workflow Deprecated::This workflow (built-tag) is deprecated and will be removed in a future version. Please migrate to the action-release workflow (https://github.com/alleyinteractive/action-release)."
shell: bash

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

- name: Clear previous vendor
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-remote-repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
shell: bash

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

- name: Save commit message
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
access_token: ${{ github.token }}

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
shell: bash

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
shell: bash

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-composer-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
shell: bash

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
access_token: ${{ github.token }}

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: 'recursive'

Expand Down
Loading