Skip to content

Commit c19e97c

Browse files
Update all non-major dependencies
1 parent 061128b commit c19e97c

File tree

6 files changed

+42
-37
lines changed

6 files changed

+42
-37
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ version: 2.1
22

33
description: Common jobs for testing and building phoenix applications
44
orbs:
5-
node: circleci/node@7.2.0
5+
node: circleci/node@7.2.1
66
executors:
77
builder:
88
parameters:
99
elixir_version:
1010
type: string
11-
default: 1.18.4 # datasource=hexpm-bob depName=elixir
11+
default: 1.19.2 # datasource=hexpm-bob depName=elixir
1212
erlang_version:
1313
type: string
1414
default: 27.2.2
@@ -32,7 +32,7 @@ executors:
3232
parameters:
3333
elixir_version:
3434
type: string
35-
default: 1.18.4 # datasource=hexpm-bob depName=elixir
35+
default: 1.19.2 # datasource=hexpm-bob depName=elixir
3636
erlang_version:
3737
type: string
3838
default: 27.2.2
@@ -73,7 +73,7 @@ commands:
7373
condition: << parameters.include-assets >>
7474
steps:
7575
- node/install:
76-
node-version: '22.20.0'
76+
node-version: '22.21.1'
7777
- run:
7878
name: Install elixir deps
7979
command: mix assets.setup

.tool-versions

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
elixir 1.18.4
2-
erlang 27.3.4.3 # renovate: datasource=github-tags depName=erlang packageName=erlang/otp
3-
nodejs 22.20.0
1+
elixir 1.19.2
2+
erlang 27.3.4.4 # renovate: datasource=github-tags depName=erlang packageName=erlang/otp
3+
nodejs 22.21.1

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
# - Ex: hexpm/elixir:1.16.3-erlang-26.2.5-debian-bullseye-20240513-slim
1313
#
1414
# renovate: datasource=hexpm-bob depName=elixir
15-
ARG ELIXIR_VERSION=1.18.4
15+
ARG ELIXIR_VERSION=1.19.2
1616
# renovate: datasource=github-tags depName=erlang packageName=erlang/otp
17-
ARG OTP_VERSION=27.3.4.3
17+
ARG OTP_VERSION=27.3.4.4
1818
# renovate: datasource=docker depName=debian packageName=debian
19-
ARG DEBIAN_VERSION=bookworm-20250929-slim
19+
ARG DEBIAN_VERSION=bookworm-20251020-slim
2020

2121
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
2222
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
@@ -29,7 +29,7 @@ RUN apt-get update -y && apt-get install -y build-essential git curl \
2929

3030
# Install JavaScript dependencies
3131
# renovate: datasource=node-version depName=node
32-
ARG NODE_VERSION=22.20.0
32+
ARG NODE_VERSION=22.21.1
3333
ENV PATH=/usr/local/node/bin:$PATH
3434
RUN curl -sL https://github.com/nodenv/node-build/archive/master.tar.gz | tar xz -C /tmp/ && \
3535
/tmp/node-build-master/bin/node-build "${NODE_VERSION}" /usr/local/node && \

assets/package-lock.json

Lines changed: 15 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ defmodule DpulCollections.MixProject do
7676
{:bandit, "~> 1.6"},
7777
{:excoveralls, "~> 0.18.5", only: :test},
7878
{:broadway, "~> 1.2"},
79-
{:ex_doc, "~> 0.38", only: :dev, runtime: false},
79+
{:ex_doc, "~> 0.39", only: :dev, runtime: false},
8080
{:req, "~> 0.5"},
8181
{:broadway_dashboard, "~> 0.4"},
8282
{:honeybadger, "~> 0.23"},
@@ -101,7 +101,7 @@ defmodule DpulCollections.MixProject do
101101
{:sham, "~> 1.0", only: :test},
102102
{:oban, "~> 2.19"},
103103
{:oban_web, "~> 2.11"},
104-
{:a11y_audit, "~> 0.2.3", only: :test},
104+
{:a11y_audit, "~> 0.3.0", only: :test},
105105
{:mock, "~> 0.3.0", only: :test},
106106
{:lazy_html, ">= 0.1.0", only: :test}
107107
]

0 commit comments

Comments
 (0)