From a13f2b99ccb530dd41244d9ec4adab6bb9d57c77 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sat, 10 Sep 2022 02:25:59 +0200 Subject: [PATCH] update actions/checkout in GitHub Actions workflows to v3 --- .github/workflows/build.yml | 4 ++-- .github/workflows/docs.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index baed461434..71476b71be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: phpts: ts steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -84,6 +84,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build uses: ./.github/actions/zts diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8f523aae47..8e06f52ee8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -38,4 +38,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages FOLDER: guide/book - CLEAN: true \ No newline at end of file + CLEAN: true