Skip to content

Commit

Permalink
Bump GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
makinoshi committed Jul 22, 2024
1 parent 8df2a2e commit c847a60
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- 6379:6379

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
Expand All @@ -39,13 +39,13 @@ jobs:
with:
cli: latest

- uses: 0918nobita/setup-cljstyle@v0.2.0
- uses: 0918nobita/setup-cljstyle@v0.5.4
with:
cljstyle-version: '0.15.0'
cljstyle-version: '0.16.626'

- uses: DeLaGuardo/setup-clj-kondo@master
with:
version: '2022.04.25'
version: '2024.05.24'

- name: Show versions
run: |
Expand All @@ -55,7 +55,7 @@ jobs:
clj-kondo --version
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2
key: clj-cache-${{ hashFiles('**/deps.edn') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
Expand All @@ -28,7 +28,7 @@ jobs:
clojure --version
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2
key: clj-cache-${{ hashFiles('**/deps.edn') }}
Expand Down

0 comments on commit c847a60

Please sign in to comment.