Update GHA versions (#80)
* actions/setup-java@v4 * actions/cache@v4 * actions/checkout@v4
This commit is contained in:
parent
1297054b77
commit
802f18af55
3 changed files with 4 additions and 4 deletions
4
.github/actions/setup-build/action.yml
vendored
4
.github/actions/setup-build/action.yml
vendored
|
|
@ -3,12 +3,12 @@ description: Sets up Build
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
java-version: '8'
|
java-version: '8'
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.m2/repository
|
path: ~/.m2/repository
|
||||||
key: ${{ runner.os }}-lein-${{ hashFiles('**/project.clj') }}
|
key: ${{ runner.os }}-lein-${{ hashFiles('**/project.clj') }}
|
||||||
|
|
|
||||||
2
.github/workflows/clojure.yml
vendored
2
.github/workflows/clojure.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Setup Build
|
- name: Setup Build
|
||||||
uses: ./.github/actions/setup-build
|
uses: ./.github/actions/setup-build
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
|
||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Setup Build
|
- name: Setup Build
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue