From ed5fb1b6290a938efa14e53135d84889bdb09912 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Wed, 9 Mar 2022 15:14:01 +0100 Subject: [PATCH] Upgrade to `actions/checkout@v3` --- .github/workflows/codestyle.yml | 2 +- .github/workflows/javascript.yml | 2 +- .github/workflows/php.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 375985c..a0a49de 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -11,6 +11,6 @@ jobs: name: PHP CodeSniffer runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: git clone --branch=5.2 --depth=1 --quiet git://github.com/WoltLab/WCF.git WCF - uses: chekalsky/phpcs-action@e269c2f264f400adcda7c6b24c8550302350d495 diff --git a/.github/workflows/javascript.yml b/.github/workflows/javascript.yml index c2ef1b5..bd4a68f 100644 --- a/.github/workflows/javascript.yml +++ b/.github/workflows/javascript.yml @@ -19,7 +19,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: "12" - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: echo "::add-matcher::.github/javascript-syntax.json" - name: Remove files to be ignored run: | diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 6a06b52..6d24fa7 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -27,7 +27,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: echo "::add-matcher::.github/php-syntax.json" - name: Remove files to be ignored run: | -- 2.20.1