Skip to content

Commit b3ef53d

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7869d81 commit b3ef53d

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/cleanup-empty-translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2

.github/workflows/monorepo-split-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282

8383

8484
steps:
85-
- uses: actions/checkout@v5
85+
- uses: actions/checkout@v6
8686

8787
# Search and replace "moox/core": "*" with "moox/core": "^3.1.3" in composer.json
8888
- name: Replace core version in composer.json

.github/workflows/monorepo-split-plugins.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- if: "!startsWith(github.ref, 'refs/tags/')"
2222
uses: "symplify/[email protected]"

.github/workflows/pest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
artifact-name: app-artifact
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
@@ -59,7 +59,7 @@ jobs:
5959
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
6060

6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363

6464
- name: Download App Artifact
6565
uses: actions/download-artifact@v6

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
artifact-name: app-artifact
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
@@ -38,7 +38,7 @@ jobs:
3838
needs: build
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242

4343
- name: Download App Artifact
4444
uses: actions/download-artifact@v6

.github/workflows/pint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
ref: ${{ github.head_ref }}
1818
token: ${{ secrets.BOT || github.token }}

.github/workflows/split.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
package: ${{ fromJson(needs.prepare.outputs.package-list) }}
7474

7575
steps:
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v6
7777

7878
- name: Get package stability and determine version
7979
working-directory: packages/${{ matrix.package }}

0 commit comments

Comments
 (0)