From e378afe4b9273455e46e690d311efa470df869bc Mon Sep 17 00:00:00 2001 From: Mark Janssen Date: Wed, 6 Nov 2024 13:10:18 +0100 Subject: [PATCH] Update deprecated workflows --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf7035b9e..3b8b3ed06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: build-and-test: runs-on: macos-12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: setup uses: ./.github/actions/setup - name: Spotless @@ -30,7 +30,7 @@ jobs: profile: pixel - name: Archive test-results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results path: | @@ -50,7 +50,7 @@ jobs: needs: [ "build-and-test" ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: setup uses: ./.github/actions/setup - name: Write key store @@ -67,14 +67,14 @@ jobs: - name: Clean up key store run: rm keystore.jks - name: Archive apks - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: apks path: | holder/build/outputs/apk retention-days: 5 - name: Archive bundle - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bundle path: | @@ -82,7 +82,7 @@ jobs: retention-days: 5 - name: Download all workflow run artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: apks path: apks