Fix actions
This commit is contained in:
parent
54a2992a5f
commit
5dba45be04
3 changed files with 6 additions and 2 deletions
4
.github/actions/setup-build/action.yml
vendored
4
.github/actions/setup-build/action.yml
vendored
|
|
@ -13,6 +13,10 @@ runs:
|
||||||
path: ~/.m2/repository
|
path: ~/.m2/repository
|
||||||
key: ${{ runner.os }}-lein-${{ hashFiles('**/project.clj') }}
|
key: ${{ runner.os }}-lein-${{ hashFiles('**/project.clj') }}
|
||||||
restore-keys: ${{ runner.os }}-lein-
|
restore-keys: ${{ runner.os }}-lein-
|
||||||
|
- name: Install clojure tools
|
||||||
|
uses: DeLaGuardo/setup-clojure@13.1
|
||||||
|
with:
|
||||||
|
lein: 2.11.2
|
||||||
- name: Clear existing docker image cache
|
- name: Clear existing docker image cache
|
||||||
shell: bash
|
shell: bash
|
||||||
run: docker image prune -af
|
run: docker image prune -af
|
||||||
|
|
|
||||||
2
.github/workflows/clojure.yml
vendored
2
.github/workflows/clojure.yml
vendored
|
|
@ -11,7 +11,7 @@ permissions:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Setup Build
|
- name: Setup Build
|
||||||
|
|
|
||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -10,7 +10,7 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
name: Release
|
name: Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue