From 12987dd63643fa0a4c18462d84eaefbd54ea8920 Mon Sep 17 00:00:00 2001 From: srz_zumix Date: Thu, 29 Aug 2024 11:33:46 +0900 Subject: [PATCH] update workflow (#115) * update workflow * fix --- .github/workflows/setup.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/setup.yml diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml new file mode 100644 index 0000000..c7f8c36 --- /dev/null +++ b/.github/workflows/setup.yml @@ -0,0 +1,13 @@ +name: Setup action +on: workflow_dispatch + +jobs: + setup-java: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin'