Skip to content

Commit a4e2cd7

Browse files
committed
Add dependabot integration
1 parent 07b0567 commit a4e2cd7

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
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/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010

1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414

1515
- name: Cache dependencies
16-
uses: actions/cache@v2
16+
uses: actions/cache@v3
1717
with:
1818
path: ~/.composer/cache/files
1919
key: dependencies-php-8.2-illuminate-10.*-composer-${{ hashFiles('composer.json') }}
@@ -32,4 +32,4 @@ jobs:
3232
run: vendor/bin/phpunit --coverage-clover 'clover.xml'
3333

3434
- name: Send coverage statistics
35-
uses: codecov/codecov-action@v1
35+
uses: codecov/codecov-action@v3

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535

3636
steps:
3737
- name: Checkout code
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v4
3939

4040
- name: Cache dependencies
41-
uses: actions/cache@v2
41+
uses: actions/cache@v3
4242
with:
4343
path: ~/.composer/cache/files
4444
key: dependencies-php-${{ matrix.php }}-illuminate-${{ matrix.illuminate }}-composer-${{ hashFiles('composer.json') }}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased](https://github.com/markwalet/laravel-packagist/compare/v1.5.0...master)
44

5+
### Added
6+
- Added Dependabot integration.
7+
58
## [v1.5.0 (2022-03-02)](https://github.com/markwalet/laravel-packagist/compare/v1.4.0...v1.5.0)
69

710
### Added

0 commit comments

Comments
 (0)