Skip to content

Commit 66acce6

Browse files
authored
Bump actions/checkout from 3 to 4 (#2612)
* Bump actions/checkout from 3 to 4 * Enable dependabot
1 parent 02c3378 commit 66acce6

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/build-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
MYSQL_ROOT_PASSWORD:
3434

3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Create MongoDB Replica Set
3838
run: |
3939
docker run --name mongodb -p 27017:27017 -e MONGO_INITDB_DATABASE=unittest --detach mongo:${{ matrix.mongodb }} mongod --replSet rs --setParameter transactionLifetimeLimitSeconds=5

.github/workflows/coding-standards.yml

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

1818
steps:
1919
- name: "Checkout"
20-
uses: "actions/checkout@v3"
20+
uses: "actions/checkout@v4"
2121

2222
- name: Setup cache environment
2323
id: extcache

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*.sublime-workspace
44
.DS_Store
55
.idea/
6-
.phpunit.result.cache
6+
.phpunit.cache/
77
.phpcs-cache
88
/vendor
99
composer.lock

0 commit comments

Comments
 (0)