From b5ad69b1ac37c6985c6ecda2e5fe0c2e850ffcaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EA=B1=B4=EC=B0=BD?= <92219795+this-is-spear@users.noreply.github.com> Date: Sun, 21 Jul 2024 17:12:57 +0900 Subject: [PATCH] =?UTF-8?q?chore(action)=20:=20=EC=95=A1=EC=85=98=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/actions_build.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/actions_build.yml b/.github/workflows/actions_build.yml index 66516fb..22af422 100644 --- a/.github/workflows/actions_build.yml +++ b/.github/workflows/actions_build.yml @@ -14,25 +14,18 @@ on: jobs: functional_tests_and_integration_tests: - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - version: [17] - fail-fast: false - - runs-on: ${{ matrix.os }} - + runs-on: ubuntu-latest timeout-minutes: 60 permissions: contents: read packages: write - steps: - uses: actions/checkout@v3 + - name: 🛠 Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: ${{ matrix.version }} + java-version: 17 distribution: 'corretto' - name: ☑️ Validate Gradle wrapper