File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
build :
15
15
docker :
16
16
# primary image for building app
17
- - image : cimg/go:1.23-node
17
+ - image : cimg/go:1.23.9 -node
18
18
19
19
# service images available at `host: localhost`
20
20
- image : circleci/postgres:12-alpine
28
28
MYSQL_DATABASE : mysql
29
29
MYSQL_ROOT_PASSWORD : my-secret-pw
30
30
31
- - image : circleci/mongo:4.4
31
+ - image : circleci/mongo:5.0.6
32
32
environment :
33
33
MONGO_INITDB_ROOT_USERNAME : mongoadmin
34
34
MONGO_INITDB_ROOT_PASSWORD : super-secret
95
95
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" | \
96
96
sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list
97
97
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
99
99
- run : make mongodb-test
100
100
101
101
# redis integration tests
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ RUN echo "debconf debconf/frontend select noninteractive" | debconf-set-selectio
6
6
apt-get -y $package_args update && \
7
7
apt-get -y $package_args dist-upgrade && \
8
8
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 && \
11
11
tar -C /usr/local -xzf go.tar.gz && \
12
12
rm go.tar.gz
13
13
@@ -36,7 +36,7 @@ RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
36
36
tee /etc/apt/sources.list.d/mongodb-org-7.0.list
37
37
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash -
38
38
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 && \
40
40
apt-get clean && \
41
41
find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && \
42
42
rm -rf \
Original file line number Diff line number Diff line change 1
1
module github.com/swisscom/backman
2
2
3
- go 1.23.9
3
+ go 1.23.11
4
4
5
5
require (
6
6
github.com/atc0005/go-teams-notify/v2 v2.13.0
You can’t perform that action at this time.
0 commit comments