Skip to content

Commit

Permalink
Update pharo-vm to v10.0.8 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli authored Oct 25, 2023
1 parent e92620e commit c205c1c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
uses: actions/checkout@v3
- name: Docker meta
id: docker_meta_runtime
uses: crazy-max/ghaction-docker-meta@v4
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/pharo
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
Expand All @@ -31,7 +31,7 @@ jobs:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
- name: Docker build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: ./source
file: ./source/Dockerfile
Expand All @@ -41,11 +41,11 @@ jobs:
secrets: GIT_AUTH_TOKEN=${{ secrets.DOCKER_REGISTRY_TOKEN }}
- name: Docker meta loader
id: docker_meta_loader
uses: crazy-max/ghaction-docker-meta@v4
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/pharo-loader
- name: Docker build and push loader
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
if: ${{ github.event_name != 'pull_request' }}
with:
context: ./source
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Markdown Lint
on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch
jobs:
remark-lint:
name: runner / markdownlint
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Unit Tests

on: [push,pull_request,workflow_dispatch]
on:
- push
- pull_request
- workflow_dispatch

jobs:
unit-tests:
Expand Down
2 changes: 1 addition & 1 deletion source/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN set -eu; \
true

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

0 comments on commit c205c1c

Please sign in to comment.