From 4a0d6b3be8ba94bda9d8b25ff52605875166d292 Mon Sep 17 00:00:00 2001 From: Chris Tankersley Date: Mon, 24 Mar 2025 14:28:47 -0400 Subject: [PATCH 1/2] Removed dead metrics action, updated build for newer action versions --- .github/workflows/build.yml | 4 ++-- .github/workflows/metrics.yml | 17 ----------------- 2 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 .github/workflows/metrics.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4becf527..b0a7c633 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ jobs: - ubuntu-latest strategy: matrix: - php: ['8.1', '8.2', '8.3'] + php: ['8.1', '8.2', '8.3', '8.4'] steps: - name: Configure Git if: ${{ matrix.os == 'windows-latest' }} @@ -15,7 +15,7 @@ jobs: git config --ystem core.eol lf - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/metrics.yml b/.github/workflows/metrics.yml deleted file mode 100644 index 8336c2b8..00000000 --- a/.github/workflows/metrics.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Aggregit - -on: - schedule: - - cron: "0 0 * * *" - -jobs: - recordMetrics: - runs-on: ubuntu-latest - steps: - - uses: michaeljolley/aggregit@v1 - with: - githubToken: ${{ secrets.GITHUB_TOKEN }} - project_id: ${{ secrets.project_id }} - private_key: ${{ secrets.private_key }} - client_email: ${{ secrets.client_email }} - firebaseDbUrl: ${{ secrets.firebaseDbUrl }} From 2b128844d6a713e294a2221ce5f2ab6dabce6186 Mon Sep 17 00:00:00 2001 From: Chris Tankersley Date: Mon, 24 Mar 2025 14:31:05 -0400 Subject: [PATCH 2/2] F --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b0a7c633..ceb80c84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache Composer dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.composercache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}