Skip to content

Commit d5aa83d

Browse files
authored
Merge pull request #227 from Quantisan/update/deps-and-actions
Update deps and actions
2 parents 3f25b3a + 2280595 commit d5aa83d

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
test:
77

88
runs-on: ubuntu-latest
9-
9+
1010
steps:
1111
- name: Install babashka
1212
uses: DeLaGuardo/[email protected]
1313
with:
14-
bb: 1.0.168
14+
bb: 1.3.190
1515
- uses: actions/checkout@v3
1616
- name: Check for stale Dockerfiles
1717
run: |

.github/workflows/official-images-pr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1313
steps:
1414
- name: Install babashka
15-
uses: DeLaGuardo/setup-clojure@10.1
15+
uses: DeLaGuardo/setup-clojure@12.5
1616
with:
17-
bb: 1.3.176
17+
bb: 1.3.190
1818
- name: Checkout code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
- name: Generate manifest
2121
run: bb run manifest target/docker.manifest
2222
- name: Upload manifest artifact
23-
uses: actions/upload-artifact@v3
23+
uses: actions/upload-artifact@v4
2424
with:
2525
name: manifest
2626
path: target/docker.manifest
@@ -32,12 +32,12 @@ jobs:
3232
diff: ${{ steps.manifest-diff.outputs.diff }}
3333
steps:
3434
- name: Checkout docker-library/official-images repo
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
repository: docker-library/official-images
3838
path: official-images
3939
- name: Download manifest artifact
40-
uses: actions/download-artifact@v3
40+
uses: actions/download-artifact@v4
4141
with:
4242
name: manifest
4343
- name: Compare manifest files
@@ -50,24 +50,24 @@ jobs:
5050
if: contains(needs.compare-manifests.outputs.diff, 'differ')
5151
steps:
5252
- name: Download manifest artifact
53-
uses: actions/download-artifact@v3
53+
uses: actions/download-artifact@v4
5454
with:
5555
name: manifest
5656
- name: Checkout docker-library/official-images repo
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858
with:
5959
repository: docker-library/official-images
6060
path: official-images
6161
- name: Copy manifest into official-images library
6262
run: cp docker.manifest official-images/library/clojure
6363
- name: Get user email
6464
id: email
65-
uses: evvanErb/get-github-email-by-username-action@v1.25
65+
uses: evvanErb/get-github-email-by-username-action@v2.0
6666
with:
6767
github-username: ${{ github.actor }}
6868
token: ${{ secrets.API_TOKEN_GITHUB }}
6969
- name: Open official-images pull request
70-
uses: peter-evans/create-pull-request@v5
70+
uses: peter-evans/create-pull-request@v6
7171
with:
7272
token: ${{ secrets.API_TOKEN_GITHUB }}
7373
path: official-images

bb.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{:paths ["src"]
22
:deps {local/deps {:local/root "."}
33
org.babashka/spec.alpha {:git/url "https://github.com/babashka/spec.alpha"
4-
:git/sha "1a841c4cc1d4f6dab7505a98ed2d532dd9d56b78"}}
4+
:git/sha "951b49b8c173244e66443b8188e3ff928a0a71e7"}}
55
:tasks
66
{:requires ([docker-clojure.core :as dc])
77
clean (dc/-main "clean")

deps.edn

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{:deps
2-
{org.clojure/clojure {:mvn/version "1.11.1"}
3-
org.clojure/math.combinatorics {:mvn/version "0.1.6"}
4-
org.clojure/core.async {:mvn/version "1.5.648"}}
2+
{org.clojure/clojure {:mvn/version "1.11.2"}
3+
org.clojure/math.combinatorics {:mvn/version "0.3.0"}
4+
org.clojure/core.async {:mvn/version "1.6.681"}}
55

66
:paths ["src" "resources"]
77

@@ -12,5 +12,5 @@
1212

1313
:test {:extra-paths ["test"]
1414
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
15-
:sha "4e7e1c0dfd5291fa2134df052443dc29695d8cbe"}}
15+
:sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
1616
:main-opts ["-m" "cognitect.test-runner"]}}}

src/docker_clojure/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175
(while (<!! builds-ch))))
176176

177177
(defn generate-dockerfiles! [installer-hashes variants]
178+
(log "Generated" (count variants) "variants")
178179
(doseq [variant variants]
179180
(generate-dockerfile! installer-hashes variant)))
180181

@@ -235,7 +236,6 @@
235236
[{:keys [cmd args parallelization]}]
236237
(logger/start)
237238
(let [variants (generate-variants args)]
238-
(log "Generated" (count variants) "variants")
239239
(case cmd
240240
:clean (df/clean-all)
241241
:dockerfiles (generate-dockerfiles! cfg/installer-hashes variants)

0 commit comments

Comments
 (0)