From 790b34e728a6cc6b4713f2873fb026d20e05f4ef Mon Sep 17 00:00:00 2001 From: William Desportes Date: Tue, 12 Sep 2023 16:46:51 +0200 Subject: [PATCH] Add PHP 8.3 and bump actions --- .github/workflows/test-unit.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index e1a9f8c..70f6a04 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -11,13 +11,13 @@ jobs: strategy: matrix: operating-system: [ 'ubuntu-latest' ] - php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2' ] + php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3' ] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache vendor - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | vendor @@ -34,4 +34,4 @@ jobs: run: '[ -e vendor ] || composer install' - name: Run Tests - run: make deps test \ No newline at end of file + run: make deps test