Skip to content

Commit 37d652e

Browse files
committed
ci: update GitHub Actions to latest versions
1 parent afe9825 commit 37d652e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build-assets.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
ref: ${{ github.head_ref }}
2727

2828
- name: Setup Node.js
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: '20'
3232
cache: 'npm'
@@ -40,6 +40,6 @@ jobs:
4040
npm run admin:build
4141
4242
- name: Commit changes
43-
uses: stefanzweifel/git-auto-commit-action@v6
43+
uses: stefanzweifel/git-auto-commit-action@v7
4444
with:
4545
commit_message: Built assets

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
ref: ${{ github.head_ref }}
2121

2222
- name: Fix PHP code style issues
2323
uses: aglipanci/[email protected]
2424

2525
- name: Commit changes
26-
uses: stefanzweifel/git-auto-commit-action@v6
26+
uses: stefanzweifel/git-auto-commit-action@v7
2727
with:
2828
commit_message: Fix styling

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 5
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2

.github/workflows/run-tests.yml

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

3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: Setup PHP
3838
uses: shivammathur/setup-php@v2

.github/workflows/update-changelog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Update Changelog"
1+
name: 'Update Changelog'
22

33
on:
44
release:
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: main
2020

@@ -25,7 +25,7 @@ jobs:
2525
release-notes: ${{ github.event.release.body }}
2626

2727
- name: Commit updated CHANGELOG
28-
uses: stefanzweifel/git-auto-commit-action@v6
28+
uses: stefanzweifel/git-auto-commit-action@v7
2929
with:
3030
branch: main
3131
commit_message: Update CHANGELOG

0 commit comments

Comments
 (0)