Skip to content

Commit 614f6b4

Browse files
authored
Update VM to 10.3.5 (#23)
1 parent 5b3e540 commit 614f6b4

12 files changed

+10
-15
lines changed

.docker/docker-compose-balanced-pharo-date.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.4'
21
services:
32
date:
43
image: pharo-date:sut

.docker/docker-compose-eval.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.4'
21
services:
32
sut:
43
image: pharo-runtime:sut

.docker/docker-compose-loading-code.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.4'
21
services:
32
sut:
43
image: pharo-runtime:sut

.docker/docker-compose-pharo-date-multistage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.4'
21
services:
32
sut:
43
image: pharo-date:sut

.docker/docker-compose-pharo-date.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.4'
21
services:
32
sut:
43
build:

.docker/docker-compose-version.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.4'
21
services:
32
sut:
43
image: pharo-runtime:sut

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
3636
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
3737
- name: Docker build and push
38-
uses: docker/build-push-action@v5
38+
uses: docker/build-push-action@v6
3939
with:
4040
context: ./source
4141
file: ./source/Dockerfile
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
images: ghcr.io/${{ github.repository_owner }}/pharo-loader
6868
- name: Docker build and push loader
69-
uses: docker/build-push-action@v5
69+
uses: docker/build-push-action@v6
7070
if: ${{ github.event_name != 'pull_request' }}
7171
with:
7272
context: ./source

.github/workflows/scheduled-security-scan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
version:
1717
- latest
1818
- v11.0.0
19+
- v12.0.1
1920
name: Scheduled scan for vulnerabilities ${{ matrix.version }}
2021
runs-on: ubuntu-latest
2122
steps:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Buenos Aires Smalltalk
3+
Copyright (c) 2022-2025 Buenos Aires Smalltalk
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/how-to-guides/how-to-use-as-dependency.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
In your `Dockerfile` put something like:
44

55
```dockerfile
6-
FROM ghcr.io/ba-st/pharo:v11.0.0
6+
FROM ghcr.io/ba-st/pharo:v12.0.1
77
```
88

99
If you want to create a custom Pharo image it's better to use multi-stage builds
@@ -13,10 +13,10 @@ configure Iceberg to use HTTPS.
1313
For example
1414

1515
```dockerfile
16-
FROM ghcr.io/ba-st/pharo-loader:v11.0.0 AS loader
16+
FROM ghcr.io/ba-st/pharo-loader:v12.0.1 AS loader
1717
RUN pharo metacello install github://owner/repo:branch BaselineOfProject
1818

19-
FROM ghcr.io/ba-st/pharo:v11.0.0
19+
FROM ghcr.io/ba-st/pharo:v12.0.1
2020
COPY --from=loader /opt/pharo/Pharo.image ./
2121
COPY --from=loader /opt/pharo/Pharo.changes ./
2222
COPY --from=loader /opt/pharo/Pharo*.sources ./

0 commit comments

Comments
 (0)