diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8138f831..ef2d5da1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - name: Install babashka uses: DeLaGuardo/setup-clojure@13.4 with: - bb: 1.12.200 + bb: 1.12.217 - uses: actions/checkout@v4 - name: Check for stale Dockerfiles run: | diff --git a/.github/workflows/official-images-pr.yml b/.github/workflows/official-images-pr.yml index d494bb2f..81337095 100644 --- a/.github/workflows/official-images-pr.yml +++ b/.github/workflows/official-images-pr.yml @@ -12,15 +12,15 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - name: Install babashka - uses: DeLaGuardo/setup-clojure@13.4 + uses: DeLaGuardo/setup-clojure@13.6.0 with: - bb: 1.12.200 + bb: 1.12.217 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Generate manifest run: bb run manifest target/docker.manifest - name: Upload manifest artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: manifest path: target/docker.manifest @@ -32,12 +32,12 @@ jobs: diff: ${{ steps.manifest-diff.outputs.diff }} steps: - name: Checkout docker-library/official-images repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: docker-library/official-images path: official-images - name: Download manifest artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: manifest - name: Compare manifest files @@ -50,11 +50,11 @@ jobs: if: contains(needs.compare-manifests.outputs.diff, 'differ') steps: - name: Download manifest artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: manifest - name: Checkout docker-library/official-images repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: docker-library/official-images path: official-images @@ -67,7 +67,7 @@ jobs: github-username: ${{ github.actor }} token: ${{ secrets.API_TOKEN_GITHUB }} - name: Open official-images pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.API_TOKEN_GITHUB }} path: official-images diff --git a/deps.edn b/deps.edn index 365926f9..6767b856 100644 --- a/deps.edn +++ b/deps.edn @@ -1,9 +1,9 @@ {:deps - {org.clojure/clojure {:mvn/version "1.12.1"} - org.clojure/math.combinatorics {:mvn/version "0.3.0"} - org.clojure/core.async {:mvn/version "1.8.741"} + {org.clojure/clojure {:mvn/version "1.12.4"} + org.clojure/math.combinatorics {:mvn/version "0.3.2"} + org.clojure/core.async {:mvn/version "1.9.865"} com.gfredericks/test.chuck {:git/url "https://github.com/gfredericks/test.chuck" - :git/sha "0487a45a073f09ba071b28323a8be8ad57c9bbfd"}} + :git/sha "ab5c11b013d3526e587dd53a860fa651b3e8a5a7"}} :paths ["src" "resources"] @@ -15,6 +15,6 @@ :test {:extra-paths ["test"] :extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"} orchestra/orchestra {:mvn/version "2021.01.01-1"} - org.clojure/test.check {:mvn/version "1.1.1"}} + org.clojure/test.check {:mvn/version "1.1.3"}} :exec-fn docker-clojure.fix-kaocha/run-tests :exec-args {}}}}