From 9abd550b52bfb668df6381669235ebeb608ea439 Mon Sep 17 00:00:00 2001 From: abmmhasan Date: Mon, 15 Apr 2024 21:07:36 +0600 Subject: [PATCH] updated schedulers --- .github/dependabot.yml | 2 +- .github/workflows/build.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0d11c98..6a00f60 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,4 +3,4 @@ updates: - package-ecosystem: "composer" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "weekly" \ No newline at end of file + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2998e7f..9b39613 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,8 @@ name: "Security & Standards" on: + schedule: + - cron: '0 0 * * 0' push: branches: [ '*' ] pull_request: @@ -12,7 +14,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-versions: [ '8.2', '8.3' ] + php-versions: [ '8.2', '8.3', '8.4' ] dependency-version: [ prefer-lowest, prefer-stable ] name: PHP ${{ matrix.php-versions }} - ${{ matrix.operating-system }} - ${{ matrix.dependency-version }}