From bc2bb8041970f7e8c3876be242fb3efa2c072e9b Mon Sep 17 00:00:00 2001 From: dartcafe Date: Sat, 3 Jun 2023 20:16:20 +0200 Subject: [PATCH] action/checkout v3 Signed-off-by: dartcafe --- .github/workflows/lint.yml | 6 +++--- .github/workflows/nodejs.yml | 2 +- .github/workflows/phpunit.yml | 6 +++--- .github/workflows/static-analysis.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 76373af70..74b4834bd 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup composer and PHP uses: ./.github/actions/setup-composer @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup node uses: ./.github/actions/setup-node @@ -52,7 +52,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup node uses: ./.github/actions/setup-node diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cb3368858..6b2bff24b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -13,7 +13,7 @@ jobs: name: Build app steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup node uses: ./.github/actions/setup-node diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index eb034f06e..2f8dfc1a0 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -29,7 +29,7 @@ jobs: name: SQLite steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: path: src @@ -74,7 +74,7 @@ jobs: options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: path: src - name: Prepare server @@ -121,7 +121,7 @@ jobs: options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: path: src - name: Prepare server diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 8f5d1b422..2957426ff 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -18,7 +18,7 @@ jobs: name: Psalm steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Setup composer and PHP uses: ./.github/actions/setup-composer