Skip to content

chore(deps): update dependency express to v4.20.0 (#2946) #10542

chore(deps): update dependency express to v4.20.0 (#2946)

chore(deps): update dependency express to v4.20.0 (#2946) #10542

Workflow file for this run

name: linux-builds
on:
push:
env:
OWNER: ${{ github.repository_owner }}
BUILDKIT_PROGRESS: plain
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
file:
- docker-dind
- forgejo
- forgejo-runner
- github-runner
- keydb
- nextcloud
- node
- uptime-kuma
- verdaccio
env:
FILE: ${{ matrix.file }}
IMAGE: ghcr.io/${{ github.repository_owner }}/${{ matrix.file }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: docker-config
uses: containerbase/internal-tools@7967a205f4acf76ad2d414d6a074b58a52739986 # v3.4.15
with:
command: docker-config
- name: Build the Docker image
run: docker buildx bake test
- name: Test run
run: docker compose --file docker-compose.test.yml run sut
working-directory: ./linux/${{ env.FILE }}
- name: Log into registry
if: github.ref == 'refs/heads/main'
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: Publish the Docker image
if: github.ref == 'refs/heads/main'
run: docker buildx bake build
- name: Publish the Docker image tags
if: github.ref == 'refs/heads/main'
run: |
if [ -f push.sh ]; then
./push.sh
fi
working-directory: ./linux/${{ env.FILE }}