Skip to content

Commit 7150f94

Browse files
authored
Merge pull request #100 from swisscom/develop
bump versions
2 parents 2868198 + 1a194be commit 7150f94

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 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-node
17+
- image: cimg/go:1.23.9-node
1818

1919
# service images available at `host: localhost`
2020
- image: circleci/postgres:12-alpine
@@ -28,7 +28,7 @@ jobs:
2828
MYSQL_DATABASE: mysql
2929
MYSQL_ROOT_PASSWORD: my-secret-pw
3030

31-
- image: circleci/mongo:4.4
31+
- image: circleci/mongo:5.0.6
3232
environment:
3333
MONGO_INITDB_ROOT_USERNAME: mongoadmin
3434
MONGO_INITDB_ROOT_PASSWORD: super-secret
@@ -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.0 mongodb-org-tools=7.0.7 mongodb-org-shell=7.0.7 mongodb-mongosh=2.2.2
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
9999
- run: make mongodb-test
100100

101101
# redis integration tests

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.9.linux-amd64.tar.gz" && \
10-
echo "de03e45d7a076c06baaa9618d42b3b6a0561125b87f6041c6397680a71e5bb26 go.tar.gz" | sha256sum -c && \
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 && \
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.0 mongodb-org-tools=7.0.7 mongodb-org-shell=7.0.7 redis-tools nodejs openssh-server bash vim-tiny && \
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 && \
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.9
3+
go 1.23.11
44

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

0 commit comments

Comments
 (0)