Skip to content

Commit 93858fd

Browse files
dependencies and interval checks (#1344)
* chore(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump phpunit/phpunit from 9.6.13 to 10.3.5 Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.6.13 to 10.3.5. - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.3.5/ChangeLog-10.3.md) - [Commits](sebastianbergmann/phpunit@9.6.13...10.3.5) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump prettier from 2.8.8 to 3.0.3 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.3. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@2.8.8...3.0.3) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump eslint-config-prettier from 7.2.0 to 9.0.0 Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 7.2.0 to 9.0.0. - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](prettier/eslint-config-prettier@v7.2.0...v9.0.0) --- updated-dependencies: - dependency-name: eslint-config-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump eslint-plugin-prettier from 3.4.1 to 4.2.1 Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.4.1 to 4.2.1. - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-plugin-prettier/commits/v4.2.1) --- updated-dependencies: - dependency-name: eslint-plugin-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump axios from 0.21.4 to 1.5.0 Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 1.5.0. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v0.21.4...v1.5.0) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump resolve-url-loader from 3.1.5 to 5.0.0 Bumps [resolve-url-loader](https://github.com/bholloway/resolve-url-loader/tree/HEAD/packages/resolve-url-loader) from 3.1.5 to 5.0.0. - [Release notes](https://github.com/bholloway/resolve-url-loader/releases) - [Changelog](https://github.com/bholloway/resolve-url-loader/blob/v5/packages/resolve-url-loader/CHANGELOG.md) - [Commits](https://github.com/bholloway/resolve-url-loader/commits/5.0.0/packages/resolve-url-loader) --- updated-dependencies: - dependency-name: resolve-url-loader dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * remove the gitattributes file * keep 9.0 alongside 10.0 * remove the --verbose flag * compiling assets * update docs version * change dependabot intervals --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e4a5890 commit 93858fd

15 files changed

+388
-628
lines changed

.gitattributes

-14
This file was deleted.

.github/dependabot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: "weekly"
88
reviewers:
99
- "austintoddj"
1010
labels:
@@ -17,7 +17,7 @@ updates:
1717
- package-ecosystem: "npm"
1818
directory: "/"
1919
schedule:
20-
interval: "daily"
20+
interval: "weekly"
2121
reviewers:
2222
- "austintoddj"
2323
labels:
@@ -30,7 +30,7 @@ updates:
3030
- package-ecosystem: "composer"
3131
directory: "/"
3232
schedule:
33-
interval: "daily"
33+
interval: "weekly"
3434
reviewers:
3535
- "austintoddj"
3636
labels:

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Checkout code
55-
uses: actions/checkout@v3
55+
uses: actions/checkout@v4
5656

5757
- name: Setup PHP
5858
uses: shivammathur/setup-php@v2
@@ -68,4 +68,4 @@ jobs:
6868
composer update --prefer-dist --no-interaction --no-progress
6969
7070
- name: Run tests
71-
run: vendor/bin/phpunit --verbose
71+
run: vendor/bin/phpunit

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"laravel/legacy-factories": "^1.0",
3030
"mockery/mockery": "^1.4",
3131
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
32-
"phpunit/phpunit": "^9.0"
32+
"phpunit/phpunit": "^9.0|^10.0"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)