You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -19,20 +19,21 @@ jobs:
19
19
# Steps represent a sequence of tasks that will be executed as part of the job
20
20
steps:
21
21
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22
-
- uses: actions/checkout@v2
23
-
- uses: actions/setup-java@v1
22
+
- uses: actions/checkout@v3
23
+
- uses: actions/setup-java@v4
24
24
with:
25
-
java-version: 11
26
-
- uses: DeLaGuardo/setup-clojure@5.0
25
+
distribution: 'temurin'
26
+
java-version: '21'
27
+
- uses: DeLaGuardo/setup-clojure@13.4
27
28
with:
28
-
cli: '1.10.1.727'
29
+
cli: '1.12.0.1530'
29
30
- name: Setup Node.js environment
30
-
uses: actions/setup-node@v3.8.1
31
-
#with:
31
+
uses: actions/setup-node@v4
32
+
with:
32
33
# Set always-auth in npmrc
33
34
#always-auth: # optional, default is false
34
35
# Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0
35
-
#node-version: # optional, default is 10.x
36
+
node-version: 24
36
37
# Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN
37
38
#registry-url: # optional
38
39
# Optional scope for authenticating against scoped registries
0 commit comments