From 9d15775b861a3e7cd2be74efe441da034cd1398e Mon Sep 17 00:00:00 2001 From: tenzap Date: Sat, 19 Aug 2023 09:48:44 +0200 Subject: [PATCH] github wf: use actions/checkout@v3 to use node16 The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ --- .github/workflows/codeigniter.yml | 6 +++--- .github/workflows/packaging.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeigniter.yml b/.github/workflows/codeigniter.yml index 1a58f324c..b27c3fe41 100644 --- a/.github/workflows/codeigniter.yml +++ b/.github/workflows/codeigniter.yml @@ -18,7 +18,7 @@ jobs: runs-on: ${{ matrix.operating-system }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: @@ -69,7 +69,7 @@ jobs: runs-on: ${{ matrix.operating-system }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: @@ -127,7 +127,7 @@ jobs: continue-on-error: true steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index 014f84159..6b329c182 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -17,7 +17,7 @@ jobs: DPUT_CF: /home/runner/dput.cf steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install required packages run: | sudo apt-get update @@ -182,7 +182,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Composer (php-actions) uses: php-actions/composer@v6 with: