Skip to content

Commit 4cb0969

Browse files
committed
update tool versions
1 parent 8fc151f commit 4cb0969

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
- name: Setup Python
204204
uses: actions/setup-python@v5
205205
with:
206-
python-version: '3.10'
206+
python-version: '3.11'
207207

208208
- name: Setup Java
209209
uses: actions/setup-java@v4
@@ -214,7 +214,7 @@ jobs:
214214
- name: Setup Go
215215
uses: actions/setup-go@v5
216216
with:
217-
go-version: '1.21'
217+
go-version: '1.23'
218218

219219
- name: Start the database
220220
run: docker compose -f services/docker-database.yml up -d

services/workshop/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# limitations under the License.
1313

1414

15-
FROM python:3.10-alpine AS build
15+
FROM python:3.11-alpine AS build
1616
# Not using alpine based on suggestion
1717
# https://pythonspeed.com/articles/alpine-docker-python/
1818

@@ -33,7 +33,7 @@ WORKDIR /app
3333
COPY ./ /app
3434
RUN pip install wheel && pip wheel . --wheel-dir /app/wheels
3535

36-
FROM python:3.10-alpine
36+
FROM python:3.11-alpine
3737
COPY --from=build /app /app
3838
WORKDIR /app
3939
RUN apk update && apk add --no-cache postgresql-libs curl

0 commit comments

Comments
 (0)