Skip to content

Commit ca553f9

Browse files
committed
bump system packages
1 parent 1a194be commit ca553f9

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
docker:
1616
# primary image for building app
17-
- image: cimg/go:1.23.9-node
17+
- image: cimg/go:1.23.12-node
1818

1919
# service images available at `host: localhost`
2020
- image: circleci/postgres:12-alpine
@@ -95,7 +95,7 @@ jobs:
9595
sudo echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | \
9696
sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list
9797
sudo apt-get update
98-
sudo apt-get install -y mongodb-database-tools=100.9.5 mongodb-org-tools=7.0.15 mongodb-org-shell=7.0.15 mongodb-mongosh=2.2.2
98+
sudo apt-get install -y mongodb-database-tools=100.13.0 mongodb-org-tools=7.0.24 mongodb-org-shell=7.0.24 mongodb-mongosh=2.5.8
9999
- run: make mongodb-test
100100

101101
# redis integration tests

.mise.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
go = "1.23.12"

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ RUN echo "debconf debconf/frontend select noninteractive" | debconf-set-selectio
66
apt-get -y $package_args update && \
77
apt-get -y $package_args dist-upgrade && \
88
apt-get -y $package_args install curl ca-certificates gnupg tzdata git
9-
RUN curl --location --output go.tar.gz "https://go.dev/dl/go1.23.11.linux-amd64.tar.gz" && \
10-
echo "80899df77459e0b551d2eb8800ad6eb47023b99cccbf8129e7b5786770b948c5 go.tar.gz" | sha256sum -c && \
9+
RUN curl --location --output go.tar.gz "https://go.dev/dl/go1.23.12.linux-amd64.tar.gz" && \
10+
echo "d3847fef834e9db11bf64e3fb34db9c04db14e068eeb064f49af747010454f90 go.tar.gz" | sha256sum -c && \
1111
tar -C /usr/local -xzf go.tar.gz && \
1212
rm go.tar.gz
1313

@@ -36,7 +36,7 @@ RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
3636
tee /etc/apt/sources.list.d/mongodb-org-7.0.list
3737
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash -
3838
RUN apt-get -y $package_args update && \
39-
apt-get -y $package_args install mysql-client postgresql-client-17 mongodb-database-tools=100.9.5 mongodb-org-tools=7.0.15 mongodb-org-shell=7.0.15 redis-tools nodejs openssh-server bash vim-tiny && \
39+
apt-get -y $package_args install mysql-client postgresql-client-17 mongodb-database-tools=100.13.0 mongodb-org-tools=7.0.24 mongodb-org-shell=7.0.24 redis-tools nodejs openssh-server bash vim-tiny && \
4040
apt-get clean && \
4141
find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && \
4242
rm -rf \

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/swisscom/backman
22

3-
go 1.23.11
3+
go 1.23.12
44

55
require (
66
github.com/atc0005/go-teams-notify/v2 v2.13.0

0 commit comments

Comments
 (0)