From b10c41022bcb9f10369d102e1be588f8fb794961 Mon Sep 17 00:00:00 2001 From: Harrison Hough Date: Wed, 10 Jan 2024 21:03:02 +0200 Subject: [PATCH] chore: update workflows --- .github/workflows/activation.yml | 18 ------------------ .github/workflows/auto-release-action.yml | 2 +- .github/workflows/integration-test.yml | 4 ++-- .github/workflows/pr-test-runner.yml | 4 ++-- .github/workflows/update-unity-sdk.yml | 2 +- 5 files changed, 6 insertions(+), 24 deletions(-) delete mode 100644 .github/workflows/activation.yml diff --git a/.github/workflows/activation.yml b/.github/workflows/activation.yml deleted file mode 100644 index 0827bbd0..00000000 --- a/.github/workflows/activation.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Acquire activation file -on: - workflow_dispatch: {} -jobs: - activation: - name: Request manual activation file 🔑 - runs-on: ubuntu-latest - steps: - # Request manual activation file - - name: Request manual activation file - id: getManualLicenseFile - uses: game-ci/unity-request-activation-file@v2 - # Upload artifact (Unity_v20XX.X.XXXX.alf) - - name: Expose as artifact - uses: actions/upload-artifact@v2 - with: - name: ${{ steps.getManualLicenseFile.outputs.filePath }} - path: ${{ steps.getManualLicenseFile.outputs.filePath }} diff --git a/.github/workflows/auto-release-action.yml b/.github/workflows/auto-release-action.yml index 1078cef0..389a5de4 100644 --- a/.github/workflows/auto-release-action.yml +++ b/.github/workflows/auto-release-action.yml @@ -12,7 +12,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ncipollo/release-action@v1 with: name: "${{github.ref_name}}" diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 20df8c75..3b8437b0 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -20,7 +20,7 @@ jobs: - 2020.3.16f1 steps: - name: Checkout empty unity project repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "readyplayerme/rpm-unity-empty-project" fetch-depth: 0 @@ -42,7 +42,7 @@ jobs: - name: Add core with current branch as package run: openupm add com.readyplayerme.core@https://github.com/readyplayerme/rpm-unity-sdk-core.git#${{ github.ref_name }} - name: Run Tests - uses: game-ci/unity-test-runner@v2 + uses: game-ci/unity-test-runner@v4 env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} with: diff --git a/.github/workflows/pr-test-runner.yml b/.github/workflows/pr-test-runner.yml index 8c736518..fff1ffc2 100644 --- a/.github/workflows/pr-test-runner.yml +++ b/.github/workflows/pr-test-runner.yml @@ -20,7 +20,7 @@ jobs: - 2020.3.16f1 steps: - name: Checkout Unity-SDK Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "readyplayerme/Unity-SDK" submodules: true @@ -43,7 +43,7 @@ jobs: Library- - name: Run Tests - uses: game-ci/unity-test-runner@v2 + uses: game-ci/unity-test-runner@v4 env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} with: diff --git a/.github/workflows/update-unity-sdk.yml b/.github/workflows/update-unity-sdk.yml index 9d6674ff..b085201c 100644 --- a/.github/workflows/update-unity-sdk.yml +++ b/.github/workflows/update-unity-sdk.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo with submodule - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "readyplayerme/Unity-SDK" submodules: true