diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a338df9..2cb61ced 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: name: Run PHPStan runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install PHP uses: shivammathur/setup-php@master with: @@ -28,7 +28,7 @@ jobs: matrix: php-version: ['8.1', '8.0', '7.4'] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install PHP uses: shivammathur/setup-php@master with: @@ -51,7 +51,7 @@ jobs: BUILD_REF: ${{ github.sha }} BUILD_VERSION: ${{ github.ref_name }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Prepare run: | ./.docker/docker.sh prepare @@ -68,7 +68,7 @@ jobs: BUILD_REF: ${{ github.sha }} BUILD_VERSION: dev steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Prepare run: | ./.docker/docker.sh prepare diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fec79c65..cd1fc807 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: BUILD_REF: ${{ github.sha }} BUILD_VERSION: ${{ github.ref_name }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - uses: shivammathur/setup-php@v2 with: php-version: '7.4'