Skip to content

Commit c205c1c

Browse files
authored
Update pharo-vm to v10.0.8 (#15)
1 parent e92620e commit c205c1c

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/docker-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
uses: actions/checkout@v3
1919
- name: Docker meta
2020
id: docker_meta_runtime
21-
uses: crazy-max/ghaction-docker-meta@v4
21+
uses: docker/metadata-action@v5
2222
with:
2323
images: ghcr.io/${{ github.repository_owner }}/pharo
2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v1
25+
uses: docker/setup-buildx-action@v3
2626
- name: Login to Container Registry
2727
if: github.event_name != 'pull_request'
2828
uses: docker/login-action@v1
@@ -31,7 +31,7 @@ jobs:
3131
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
3232
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
3333
- name: Docker build and push
34-
uses: docker/build-push-action@v3
34+
uses: docker/build-push-action@v5
3535
with:
3636
context: ./source
3737
file: ./source/Dockerfile
@@ -41,11 +41,11 @@ jobs:
4141
secrets: GIT_AUTH_TOKEN=${{ secrets.DOCKER_REGISTRY_TOKEN }}
4242
- name: Docker meta loader
4343
id: docker_meta_loader
44-
uses: crazy-max/ghaction-docker-meta@v4
44+
uses: docker/metadata-action@v5
4545
with:
4646
images: ghcr.io/${{ github.repository_owner }}/pharo-loader
4747
- name: Docker build and push loader
48-
uses: docker/build-push-action@v3
48+
uses: docker/build-push-action@v5
4949
if: ${{ github.event_name != 'pull_request' }}
5050
with:
5151
context: ./source

.github/workflows/markdown-lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Markdown Lint
2-
on: [push,pull_request,workflow_dispatch]
2+
on:
3+
- push
4+
- pull_request
5+
- workflow_dispatch
36
jobs:
47
remark-lint:
58
name: runner / markdownlint

.github/workflows/unit-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Unit Tests
2-
3-
on: [push,pull_request,workflow_dispatch]
2+
on:
3+
- push
4+
- pull_request
5+
- workflow_dispatch
46

57
jobs:
68
unit-tests:

source/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN set -eu; \
1111
true
1212

1313
# Copy Pharo Image into base image
14-
FROM ghcr.io/ba-st/pharo-vm:v10.0.5 as image
14+
FROM ghcr.io/ba-st/pharo-vm:v10.0.8 as image
1515
LABEL org.opencontainers.image.authors="Buenos Aires Smalltalk <github@fast.org.ar>"
1616
WORKDIR /opt/pharo
1717
USER root

0 commit comments

Comments
 (0)