From 1a6104fb3e090af4cb266205a904a1b7d17c334d Mon Sep 17 00:00:00 2001 From: Nan Date: Thu, 30 Jan 2025 14:09:01 -0800 Subject: [PATCH] [ci] update `actions` to v4 * See deprecation notice: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ * Let's update all `actions` packages to v4 * The `android-actions/setup-android` is still on release v3 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5e77c3d09..5661e7aba9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,9 @@ jobs: build: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "[Setup] Java" - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' @@ -29,7 +29,7 @@ jobs: ./gradlew testReleaseUnitTest --console=plain --continue - name: Unit tests results if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: unit-tests-results path: OneSignalSDK/unittest/build