Skip to content

Commit

Permalink
Merge pull request #260 from dxw/chore/use-main-tags-for-actions
Browse files Browse the repository at this point in the history
Chore/use main tags for actions
  • Loading branch information
RobjS authored Feb 20, 2025
2 parents 3407388 + 54a32eb commit 8372416
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ 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']
fail-fast: false
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
Expand All @@ -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') }}
Expand Down

0 comments on commit 8372416

Please sign in to comment.