From 7afa8ae48e6bba00cd211977f4f4e0b09883094e Mon Sep 17 00:00:00 2001 From: Farhad Safarov Date: Wed, 5 Jun 2024 10:04:22 +0300 Subject: [PATCH 1/2] Change workflow schedule for every week on Saturday (#339) --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 620a5f9..6292cc8 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -6,7 +6,7 @@ on: branches: - master schedule: - - cron: "0 10 * * *" + - cron: "0 10 * * 6" jobs: static-code-analysis: From b60ac39231d59c2fc4e549deed2a92d4404b4a0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:00:54 +0300 Subject: [PATCH 2/2] Bump ramsey/composer-install from 1 to 3 (#334) Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 1 to 3. - [Release notes](https://github.com/ramsey/composer-install/releases) - [Commits](https://github.com/ramsey/composer-install/compare/v1...v3) --- updated-dependencies: - dependency-name: ramsey/composer-install dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/integrate.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 6292cc8..60203af 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -36,7 +36,7 @@ jobs: php-version: ${{ matrix.php-version }} - name: Install Composer dependencies - uses: ramsey/composer-install@v1 + uses: ramsey/composer-install@v3 with: dependency-versions: ${{ matrix.dependencies }} @@ -96,7 +96,7 @@ jobs: run: composer config extra.symfony.require ${{ matrix.symfony-version }}.* - name: Install Composer dependencies - uses: ramsey/composer-install@v1 + uses: ramsey/composer-install@v3 - name: "Run unit tests with phpunit" run: vendor/bin/phpunit --configuration=phpunit.xml