Skip to content

Commit 26e8c8b

Browse files
renovate[bot]g3force
authored andcommitted
chore(deps): pin dependencies
1 parent e758e2c commit 26e8c8b

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build_node:
99
resource_class: medium
1010
docker:
11-
- image: cimg/node:lts
11+
- image: cimg/node:lts@sha256:c2ea6166daf4ed37d0abdaf9186798e0c73e75a9f1f3858b69bb770755a59cca
1212
steps:
1313
- checkout
1414
- run:
@@ -27,7 +27,7 @@ jobs:
2727
test_go:
2828
resource_class: medium
2929
docker:
30-
- image: cimg/go:1.23.4
30+
- image: cimg/go:1.23.4@sha256:d89753cdb9f31e48c3a91aee6e73afcb23ad7e44abf7088491d8a9f002a71b67
3131
steps:
3232
- checkout
3333
- attach_workspace:
@@ -42,7 +42,7 @@ jobs:
4242
build_go:
4343
resource_class: large
4444
docker:
45-
- image: cimg/go:1.23.4
45+
- image: cimg/go:1.23.4@sha256:d89753cdb9f31e48c3a91aee6e73afcb23ad7e44abf7088491d8a9f002a71b67
4646
steps:
4747
- checkout
4848
- attach_workspace:
@@ -68,7 +68,7 @@ jobs:
6868
publish_gh:
6969
resource_class: small
7070
docker:
71-
- image: cimg/go:1.23.4
71+
- image: cimg/go:1.23.4@sha256:d89753cdb9f31e48c3a91aee6e73afcb23ad7e44abf7088491d8a9f002a71b67
7272
steps:
7373
- attach_workspace:
7474
at: .
@@ -80,7 +80,7 @@ jobs:
8080
build_docker:
8181
resource_class: small
8282
docker:
83-
- image: cimg/base:2024.12
83+
- image: cimg/base:2024.12@sha256:03c91d4730297b5af3718e1e81d43e210eae02be271ed7d370ccb3b994dad2bd
8484
steps:
8585
- checkout
8686
- setup_remote_docker
@@ -96,7 +96,7 @@ jobs:
9696
publish_docker:
9797
resource_class: small
9898
docker:
99-
- image: cimg/base:2024.12
99+
- image: cimg/base:2024.12@sha256:03c91d4730297b5af3718e1e81d43e210eae02be271ed7d370ccb3b994dad2bd
100100
steps:
101101
- checkout
102102
- setup_remote_docker

cmd/ssl-game-controller/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
FROM node:20-alpine AS build_node
1+
FROM node:20-alpine@sha256:24fb6aa7020d9a20b00d6da6d1714187c45ed00d1eb4adb01395843c338b9372 AS build_node
22
COPY frontend frontend
33
WORKDIR frontend
44
RUN npm install
55
RUN npm run build
66

7-
FROM golang:1.23-alpine AS build_go
7+
FROM golang:1.23-alpine@sha256:c23339199a08b0e12032856908589a6d41a0dab141b8b3b21f156fc571a3f1d3 AS build_go
88
ARG cmd=ssl-game-controller
99
WORKDIR work
1010
COPY . .
1111
COPY --from=build_node frontend/dist frontend/dist
1212
RUN go install ./cmd/${cmd}
1313

1414
# Start fresh from a smaller image
15-
FROM alpine:3
15+
FROM alpine:3@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
1616
ARG cmd=ssl-game-controller
1717
COPY --from=build_go /go/bin/${cmd} /app
1818
RUN mkdir -p /config && chown -R 1000: /config

cmd/ssl-ref-client/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.23-alpine AS build_go
1+
FROM golang:1.23-alpine@sha256:c23339199a08b0e12032856908589a6d41a0dab141b8b3b21f156fc571a3f1d3 AS build_go
22
ARG cmd=ssl-ref-client
33
WORKDIR work
44
COPY . .
55
RUN go install -v ./cmd/${cmd}
66

77
# Start fresh from a smaller image
8-
FROM alpine:3
8+
FROM alpine:3@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
99
ARG cmd=ssl-ref-client
1010
COPY --from=build_go /go/bin/${cmd} /app
1111
USER 1000

cmd/ssl-team-client/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19-alpine3.15 AS build_go
1+
FROM golang:1.19-alpine3.15@sha256:eabc3aca6f6c4386369b5b067c9c210aeccd39e76907fa2f8f774fd59d83425a AS build_go
22
WORKDIR /go/src/github.com/RoboCup-SSL/ssl-game-controller
33
COPY cmd cmd
44
COPY internal internal
@@ -8,7 +8,7 @@ COPY go.sum .
88
RUN go install -v ./cmd/ssl-team-client
99

1010
# Start fresh from a smaller image
11-
FROM alpine:3.21
11+
FROM alpine:3.21@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
1212
COPY --from=build_go /go/bin/ssl-team-client /app/ssl-team-client
1313
USER 1000
1414
ENTRYPOINT ["/app/ssl-team-client"]

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ services:
119119
network_mode: "${NETWORK_MODE}"
120120

121121
autoref-erforce:
122-
image: "roboticserlangen/autoref:commit-6f15f574ea80"
122+
image: "roboticserlangen/autoref:commit-6f15f574ea80@sha256:3d7c5933c12eb193a1fefcfd6aba86fba42875c588cc883dc20d0bfcb66b11cb"
123123
command:
124124
- "--vision-port"
125125
- "10020"
@@ -147,7 +147,7 @@ services:
147147
- autoref-tests
148148

149149
simulator:
150-
image: "roboticserlangen/simulatorcli:commit-6a4e1c06533b"
150+
image: "roboticserlangen/simulatorcli:commit-6a4e1c06533b@sha256:19d0df91697c82ebfd1f86eca5ccf6b8be2f0d64b22078725257c3a5856b5ddc"
151151
environment:
152152
GEOMETRY: "2020"
153153
REALISM: "RC2021"
@@ -160,7 +160,7 @@ services:
160160
- sim
161161

162162
ssl-simulation-controller:
163-
image: "robocupssl/ssl-simulation-controller:0.12.1"
163+
image: "robocupssl/ssl-simulation-controller:0.12.1@sha256:7765761a838da09289e0039d54d21fc3ca37bcf124dd15749ee416f440c92067"
164164
command:
165165
- "-refereeAddress"
166166
- "224.5.23.1:11003"

0 commit comments

Comments
 (0)