Skip to content

Commit e1b60c3

Browse files
committed
Update vm dependency to use 10.3.8
Update Pharo image to latest Pharo 12 branch commit Update actions versions
1 parent 737b652 commit e1b60c3

File tree

12 files changed

+14
-50
lines changed

12 files changed

+14
-50
lines changed
Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
(Teapot configure: { #port -> 8080 })
22
GET: '/*' -> [:req | DateAndTime now printString ];
3-
start.
4-
5-
"Suspend UI process, not needed on headless"
6-
(Process allSubInstances reject: #isTerminated)
7-
detect: [ :process | process name includesSubstring: 'UI Process' ]
8-
ifFound: [ :process | process suspend ].
9-
Processor activeProcess suspend.
10-
3+
start

.docker/pharo-date/start.st

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
(Teapot configure: { #port -> 8080 })
22
GET: '/*' -> [:req | DateAndTime now printString ];
3-
start.
4-
5-
"Suspend UI process, not needed on headless"
6-
(Process allSubInstances reject: #isTerminated)
7-
detect: [ :process | process name includesSubstring: 'UI Process' ]
8-
ifFound: [ :process | process suspend ].
9-
Processor activeProcess suspend.
10-
3+
start

.docker/start.st

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
(Teapot configure: { #port -> 8080 })
22
GET: '/*' -> [:req | DateAndTime now printString ];
3-
start.
4-
5-
"Suspend UI process, not needed on headless"
6-
(Process allSubInstances reject: #isTerminated)
7-
detect: [ :process | process name includesSubstring: 'UI Process' ]
8-
ifFound: [ :process | process suspend ].
9-
Processor activeProcess suspend.
10-
3+
start

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Build and Publish Docker images
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
# Build and publish runtime image
2323
- name: Docker meta
2424
id: docker_meta_runtime

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: runner / markdownlint
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: markdownlint
1313
uses: reviewdog/action-markdownlint@v0
1414
with:

.github/workflows/notify.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- v12.0.1
2020
- v13.0.0
2121
- v13.1.0
22+
- v13.1.1
2223
name: Scheduled scan for vulnerabilities ${{ matrix.version }}
2324
runs-on: ubuntu-latest
2425
steps:

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
unit-tests:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Run tests using Docker
1313
working-directory: .docker
1414
run: ./docker-tests.sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## Quick start
1616

1717
```bash
18-
docker run -it ghcr.io/ba-st/pharo:v13.1.0 pharo --version
18+
docker run -it ghcr.io/ba-st/pharo:v13.1.1 pharo --version
1919
```
2020

2121
## License

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:v13.1.0
6+
FROM ghcr.io/ba-st/pharo:v13.1.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:v13.1.0 AS loader
16+
FROM ghcr.io/ba-st/pharo-loader:v13.1.1 AS loader
1717
RUN pharo metacello install github://owner/repo:branch BaselineOfProject
1818

19-
FROM ghcr.io/ba-st/pharo:v13.1.0
19+
FROM ghcr.io/ba-st/pharo:v13.1.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)