Skip to content

fix(deps): update dependency moment-timezone to v0.6.1 (#559) #130

fix(deps): update dependency moment-timezone to v0.6.1 (#559)

fix(deps): update dependency moment-timezone to v0.6.1 (#559) #130

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (C) 2025 Opal Health Informatics Group at the Research Institute of the McGill University Health Centre <john.kildea@mcgill.ca>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
name: build
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: opalmedapps/.github/.github/actions/docker-build@main
id: build-image
with:
registry: ${{ env.REGISTRY }}
image: ${{ env.IMAGE_NAME }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Test the image
env:
TAG: ${{ steps.build-image.outputs.tag }}
run: docker run --rm "$TAG" php vendor/autoload.php