From a7eb6eaa080b29ae56bb15468ee637511bcb4e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20FIDRY?= <5175937+theofidry@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:01:49 +0100 Subject: [PATCH 1/2] ci: Add PHP 8.3 (#159) --- .github/workflows/phpstan.yml | 2 +- .github/workflows/tests.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 554d818..cff3d43 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: php: - - "8.2" + - "8.3" steps: - name: "Check out repository code" uses: "actions/checkout@v3" diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 4d8c0cc..96574a0 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -23,6 +23,7 @@ jobs: - "8.0" - "8.1" - "8.2" + - "8.3" tools: [ "composer" ] dependency-versions: [ "highest" ] include: @@ -59,6 +60,7 @@ jobs: matrix: php: - "8.2" + - "8.3" steps: - name: "Check out repository code" From dd85bcb0d7dd7250ed9c489dc427ee0e2463a724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20FIDRY?= <5175937+theofidry@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:02:00 +0100 Subject: [PATCH 2/2] ci: Add dependabot (#160) --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f916041 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +version: 2 +updates: + - package-ecosystem: "composer" + directory: "." + schedule: + interval: "weekly" + groups: + dependencies: + patterns: + - "*" + + - package-ecosystem: "composer" + directory: "vendor-bin/*/" + schedule: + interval: "weekly" + groups: + dependencies: + patterns: + - "*" + + - package-ecosystem: "github-actions" + directory: ".github/workflows" + schedule: + interval: "weekly" + groups: + dependencies: + patterns: + - "*"