diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 434d95a..00f1847 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -13,13 +13,13 @@ jobs: - uses: actions/checkout@v4 - name: Install Nix - uses: DeterminateSystems/nix-installer-action@v9 + uses: DeterminateSystems/nix-installer-action@v14 - name: Run the Magic Nix Cache - uses: DeterminateSystems/magic-nix-cache-action@v2 + uses: DeterminateSystems/magic-nix-cache-action@v8 - name: Cache Clojure dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: clj-${{ github.repository }}-${{ hashFiles('**/deps.edn') }} restore-keys: clj-${{ github.repository }}- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c64b6d..0a0f0d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,13 +16,13 @@ jobs: - uses: actions/checkout@v4 - name: Install Nix - uses: DeterminateSystems/nix-installer-action@v9 + uses: DeterminateSystems/nix-installer-action@v14 - name: Run the Magic Nix Cache - uses: DeterminateSystems/magic-nix-cache-action@v2 + uses: DeterminateSystems/magic-nix-cache-action@v8 - name: Cache Clojure dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: clj-${{ github.repository }}-${{ hashFiles('**/deps.edn') }} restore-keys: clj-${{ github.repository }}- diff --git a/deps.edn b/deps.edn index f335479..590293d 100644 --- a/deps.edn +++ b/deps.edn @@ -2,8 +2,8 @@ {org.clojure/clojure {:mvn/version "1.10.3"}} :aliases {:antq - {:deps {com.github.liquidz/antq {:mvn/version "2.7.1147"} - org.slf4j/slf4j-nop {:mvn/version "2.0.9"}}} + {:deps {com.github.liquidz/antq {:mvn/version "2.9.1232"} + org.slf4j/slf4j-nop {:mvn/version "2.0.16"}}} :build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.9.2" :git/sha "9c9f078"}} :ns-default build} @@ -12,8 +12,8 @@ :extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git" - :sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"} - com.taoensso/carmine {:mvn/version "3.3.2"} - compojure/compojure {:mvn/version "1.7.0"} + :sha "9d36f36ff541dac680a05010e4348c744333f191"} + com.taoensso/carmine {:mvn/version "3.4.1"} + compojure/compojure {:mvn/version "1.7.1"} ring/ring-mock {:mvn/version "0.4.0"}} :main-opts ["-m" "cognitect.test-runner" "-e" ":redis"]}}} diff --git a/flake.lock b/flake.lock index ef24ab5..d1a505f 100644 --- a/flake.lock +++ b/flake.lock @@ -20,16 +20,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1703467016, - "narHash": "sha256-/5A/dNPhbQx/Oa2d+Get174eNI3LERQ7u6WTWOlR1eQ=", + "lastModified": 1727264057, + "narHash": "sha256-KQPI8CTTnB9CrJ7LrmLC4VWbKZfljEPBXOFGZFRpxao=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d02d818f22c777aa4e854efc3242ec451e5d462a", + "rev": "759537f06e6999e141588ff1c9be7f3a5c060106", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-23.11", + "ref": "nixos-24.05", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index ff2a565..8d5d163 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "rate-limit"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; flake-utils.url = "github:numtide/flake-utils"; };