Skip to content

Commit

Permalink
chore(build): update clojure 1.11.1.1413
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Nov 2, 2023
1 parent 9e9ae5c commit 23bb5e8
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-android.yml
Expand Up @@ -41,7 +41,7 @@ on:
required: true

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '17'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-desktop-release.yml
Expand Up @@ -47,7 +47,7 @@ on:
- cron: '0 14 * * MON-FRI'

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Expand Up @@ -7,7 +7,7 @@ on:
types: [released]

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'

jobs:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ios-release.yml
Expand Up @@ -11,7 +11,7 @@ on:
default: "master"

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yml
Expand Up @@ -16,7 +16,7 @@ on:
- package.json

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '11'

Expand Down
23 changes: 14 additions & 9 deletions .github/workflows/build-stage.yml
Expand Up @@ -7,6 +7,11 @@ on:
release:
types: [released]

env:
CLOJURE_VERSION: '1.11.1.1413'
NODE_VERSION: '18'
JAVA_VERSION: '17'

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -17,20 +22,20 @@ jobs:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0

- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v3
with:
java-version: 1.8
distribution: 'zulu'
java-version: ${{ env.JAVA_VERSION }}

- name: Set up Node
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 18
node-version: ${{ env.NODE_VERSION }}

- name: Install clojure
run: |
curl -O https://download.clojure.org/install/linux-install-1.10.1.763.sh
chmod +x linux-install-1.10.1.763.sh
sudo ./linux-install-1.10.1.763.sh
- name: Setup clojure
uses: DeLaGuardo/setup-clojure@10.1
with:
cli: ${{ env.CLOJURE_VERSION }}

- name: Fetch yarn deps
run: yarn cache clean && yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -11,7 +11,7 @@ on:
- '*.md'

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/db.yml
Expand Up @@ -20,7 +20,7 @@ defaults:
working-directory: deps/db

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Expand Up @@ -15,7 +15,7 @@ on:
- 'e2e-tests/**'

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/graph-parser.yml
Expand Up @@ -24,7 +24,7 @@ defaults:
working-directory: deps/graph-parser

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
# This is the same as 1.8.
JAVA_VERSION: '11'
# This is the latest node version we can run.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/logseq-common.yml
Expand Up @@ -20,7 +20,7 @@ defaults:
working-directory: deps/common

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
JAVA_VERSION: '11'
# This is the latest node version we can run.
NODE_VERSION: '18'
Expand Down Expand Up @@ -109,4 +109,4 @@ jobs:
run: bb lint:large-vars

- name: Lint for namespaces that aren't documented
run: bb lint:ns-docstrings
run: bb lint:ns-docstrings
2 changes: 1 addition & 1 deletion .github/workflows/publishing.yml
Expand Up @@ -24,7 +24,7 @@ defaults:
working-directory: deps/publishing

env:
CLOJURE_VERSION: '1.10.1.763'
CLOJURE_VERSION: '1.11.1.1413'
# This is the same as 1.8.
JAVA_VERSION: '11'
# This is the latest node version we can run.
Expand Down

0 comments on commit 23bb5e8

Please sign in to comment.