diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4becf52..ceb80c8 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 @@ -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') }} diff --git a/.github/workflows/metrics.yml b/.github/workflows/metrics.yml deleted file mode 100644 index 8336c2b..0000000 --- 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 }}