Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependencies and interval checks #1344

Merged
merged 21 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a995c83
chore(deps): bump actions/checkout from 3 to 4
dependabot[bot] Sep 20, 2023
5ba7b57
chore(deps): bump phpunit/phpunit from 9.6.13 to 10.3.5
dependabot[bot] Sep 20, 2023
c93622c
chore(deps): bump prettier from 2.8.8 to 3.0.3
dependabot[bot] Sep 20, 2023
dc19030
chore(deps): bump eslint-config-prettier from 7.2.0 to 9.0.0
dependabot[bot] Sep 20, 2023
ecefffb
chore(deps): bump eslint-plugin-prettier from 3.4.1 to 4.2.1
dependabot[bot] Sep 20, 2023
3ac63ee
chore(deps): bump axios from 0.21.4 to 1.5.0
dependabot[bot] Sep 20, 2023
4998b68
chore(deps): bump resolve-url-loader from 3.1.5 to 5.0.0
dependabot[bot] Sep 20, 2023
f289406
remove the gitattributes file
austintoddj Sep 22, 2023
568c16f
Merge pull request #1342 from austintoddj/dependabot/npm_and_yarn/res…
austintoddj Sep 22, 2023
15b833f
Merge branch 'chores-and-cleanup' into dependabot/npm_and_yarn/axios-…
austintoddj Sep 22, 2023
87721b5
Merge pull request #1341 from austintoddj/dependabot/npm_and_yarn/axi…
austintoddj Sep 22, 2023
d7dcd76
Merge pull request #1340 from austintoddj/dependabot/npm_and_yarn/esl…
austintoddj Sep 22, 2023
68ddbc7
Merge pull request #1339 from austintoddj/dependabot/npm_and_yarn/esl…
austintoddj Sep 22, 2023
b532578
Merge pull request #1338 from austintoddj/dependabot/npm_and_yarn/pre…
austintoddj Sep 22, 2023
a8da3a7
Merge pull request #1335 from austintoddj/dependabot/github_actions/a…
austintoddj Sep 22, 2023
14ba868
keep 9.0 alongside 10.0
austintoddj Sep 22, 2023
41dc4c5
remove the --verbose flag
austintoddj Sep 22, 2023
355818c
Merge pull request #1337 from austintoddj/dependabot/composer/phpunit…
austintoddj Sep 22, 2023
7a4f19a
compiling assets
austintoddj Sep 22, 2023
86dc389
update docs version
austintoddj Sep 22, 2023
91ec5f8
change dependabot intervals
austintoddj Sep 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .gitattributes

This file was deleted.

6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
reviewers:
- "austintoddj"
labels:
Expand All @@ -17,7 +17,7 @@ updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
reviewers:
- "austintoddj"
labels:
Expand All @@ -30,7 +30,7 @@ updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
reviewers:
- "austintoddj"
labels:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -68,4 +68,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress

- name: Run tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"laravel/legacy-factories": "^1.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0"
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading