diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 936ebe6..634ae48 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: push jobs: run: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 strategy: matrix: php-versions: ['7.4', '8.0', '8.1', '8.2'] @@ -12,7 +12,7 @@ jobs: name: PHP ${{ matrix.php-versions }} steps: - name: Checkout - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -23,7 +23,7 @@ jobs: id: composer-cache run: | echo "::set-output name=dir::$(composer config cache-files-dir)" - - uses: actions/cache@v4.0.2 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}