From 6e0519d1b110783142b159e20f2c3ef7640be778 Mon Sep 17 00:00:00 2001 From: Shogo Ohta Date: Tue, 22 Aug 2023 23:34:46 +0900 Subject: [PATCH] Update GitHub Actions --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a05ec47..9d03c6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,17 +6,18 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Java - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: - java-version: '11' + distribution: temurin + java-version: '17' - name: Setup Clojure CLI - uses: DeLaGuardo/setup-clojure@3.1 + uses: DeLaGuardo/setup-clojure@11.0 with: tools-deps: latest - name: Cache deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | .cpcache @@ -31,4 +32,4 @@ jobs: - name: Run check run: clojure -M:check - name: Run tests - run: clojure -M:test \ No newline at end of file + run: clojure -M:test