From 36dcc191eab219b799bc590a7f094d88cedb1f67 Mon Sep 17 00:00:00 2001 From: Konboi Date: Fri, 9 Aug 2024 14:54:56 +0900 Subject: [PATCH 1/2] update actions versions --- action.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index 54f1104..112a09f 100644 --- a/action.yaml +++ b/action.yaml @@ -48,13 +48,14 @@ runs: using: "composite" steps: - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 with: python-version: ${{ inputs.python_version }} - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 with: - java-version: 1.8 + distribution: 'adopt' + java-version: 8 - id: install shell: bash run: pip install "launchable>=1.59.0" From fe7824158fc90bb46313e6f9f12f8958039458e6 Mon Sep 17 00:00:00 2001 From: Konboi Date: Fri, 9 Aug 2024 15:31:26 +0900 Subject: [PATCH 2/2] fix nits --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 112a09f..f855c61 100644 --- a/action.yaml +++ b/action.yaml @@ -144,8 +144,8 @@ runs: fi options+=( - ${{ inputs.test_runner }} \ - ${{ inputs.report_path }} + "${{ inputs.test_runner }}" + "${{ inputs.report_path }}" ) launchable record tests "${options[@]}"