Skip to content

Commit

Permalink
Update workflows, bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Aug 6, 2024
1 parent 3ba80f0 commit fe1bfe3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
paths:
- '.github/workflows/**'
- 'src/**'
- 'test/**'
- 'test_projects/**'
Expand All @@ -15,23 +16,22 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

env:
CLOJARS_TOKEN: ${{ secrets.CLOJARS_DEPLOY_TOKEN }}

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

- run: |
echo "JAVA_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV
echo "JAVA8_HOME=$JAVA_HOME_8_X64" >> $GITHUB_ENV
echo "$JAVA_HOME_11_X64/bin" >> $GITHUB_PATH
echo "JAVA_HOME=$JAVA_HOME_21_X64" >> $GITHUB_ENV
echo "$JAVA_HOME_21_X64/bin" >> $GITHUB_PATH
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@10.0
uses: DeLaGuardo/setup-clojure@12.5
with:
cli: 1.11.1.1200
cli: latest

- run: ./script/test.sh

Expand All @@ -47,7 +47,7 @@ jobs:
run: |
lein deploy clojars
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: jar
path: 'target/*.jar'
path: 'target/*.jar'
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:deps
{org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/tools.deps {:mvn/version "0.18.1335"}}
{org.clojure/clojure {:mvn/version "1.11.4"}
org.clojure/tools.deps {:mvn/version "0.19.1432"}}

:aliases
{:test {:extra-paths ["test"]}}}

0 comments on commit fe1bfe3

Please sign in to comment.