From 977d32b3bf4c777fabaef3bf1099680bd6cb9400 Mon Sep 17 00:00:00 2001 From: Daniel Carbone Date: Wed, 24 May 2023 19:54:47 -0500 Subject: [PATCH 1/2] bumping versions of things in the tests action --- .github/workflows/tests.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b9f0cf01..9fdccd0d 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -24,10 +24,10 @@ env: jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - php-version: ["7.4", "8.0", "8.1"] + php-version: ["7.4", "8.0", "8.1", "8.2"] name: Tests - PHP ${{ matrix.php-version }} steps: @@ -44,9 +44,9 @@ jobs: --no-scripts \ --no-progress - run: | - wget https://releases.hashicorp.com/consul/1.12.1/consul_1.12.1_linux_amd64.zip - unzip consul_1.12.1_linux_amd64.zip -d /usr/local/bin/ - rm consul_1.12.1_linux_amd64.zip + wget https://releases.hashicorp.com/consul/1.15.2/consul_1.15.2_linux_amd64.zip + unzip consul_1.15.2_linux_amd64.zip -d /usr/local/bin/ + rm consul_1.15.2_linux_amd64.zip chmod +x /usr/local/bin/consul consul --version - run: | From 257e8a1153c6ed8c0d4c386b6d2e1db3d8c77626 Mon Sep 17 00:00:00 2001 From: Daniel Carbone Date: Wed, 24 May 2023 19:56:28 -0500 Subject: [PATCH 2/2] adding tests to on-pr paths --- .github/workflows/tests.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9fdccd0d..4a6e5802 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -9,6 +9,7 @@ on: - 'composer.json' - 'composer.lock' - 'phpunit.xml' + - '.github/workflows/tests.yaml' push: branches: - master