Skip to content

Commit

Permalink
fix: use actions/checkout@v4 instead of master
Browse files Browse the repository at this point in the history
  • Loading branch information
shavounet committed Oct 26, 2023
1 parent a524310 commit 64753a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Code style
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
Expand All @@ -22,7 +22,7 @@ jobs:
flags: [ '', '--prefer-lowest' ]
fail-fast: false
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
# TODO add --prefer-lowest once we're ready to handle it
fail-fast: false
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
Expand All @@ -71,7 +71,7 @@ jobs:
name: Rector checks
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
Expand Down

0 comments on commit 64753a1

Please sign in to comment.