From 03217c4bbc74cad29e5b291e275605f752815992 Mon Sep 17 00:00:00 2001 From: Mark Janssen Date: Wed, 6 Nov 2024 13:10:43 +0100 Subject: [PATCH] Update deprecated workflows --- .github/workflows/lumen.yml | 2 +- .github/workflows/package.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lumen.yml b/.github/workflows/lumen.yml index b571864..de53a47 100755 --- a/.github/workflows/lumen.yml +++ b/.github/workflows/lumen.yml @@ -17,7 +17,7 @@ jobs: php-versions: [ '8.0' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install PHP uses: shivammathur/setup-php@master with: diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 499a66f..e4d81db 100755 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Install PHP uses: shivammathur/setup-php@master with: @@ -28,7 +28,7 @@ jobs: - name: Create tar run: tar -czf ct_ctp_${{ env.RELEASE_VERSION }}.tar.gz ./app ./bootstrap ./config ./database ./public ./resources ./routes ./storage ./vendor ./composer.json - name: Upload release tar - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: ct_ctp_${{ env.RELEASE_VERSION }} path: ct_ctp_${{ env.RELEASE_VERSION }}.tar.gz