Skip to content

chore(deps): update actions/cache digest to 640a1c2 #12

chore(deps): update actions/cache digest to 640a1c2

chore(deps): update actions/cache digest to 640a1c2 #12

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
---
name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build-clojure:
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag: v4.22
- name: Setup java 21 as default java
run: |
echo "JAVA_HOME=$JAVA_HOME_21_X64" >> $GITHUB_ENV
echo "$JAVA_HOME_21_X64/bin" >> $GITHUB_PATH
shell: bash
- name: Install clojure + tools
uses: DeLaGuardo/setup-clojure@ada62bb3282a01a296659d48378b812b8e097360 # tag 13.2
with:
cli: latest
bb: latest
cljfmt: latest
clj-kondo: latest
- name: Cache clojure dependencies
uses: actions/cache@640a1c2554105b57832a23eea0b4672fc7a790d5 # tag: v4.2.3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('**/deps.edn') }}
restore-keys: cljdeps-
- name: Run test suite + linters
run: bb ci