Skip to content

Bump yogeshlonkar/trivy-cache-action from 0.1.7 to 0.1.8 (#8) #17

Bump yogeshlonkar/trivy-cache-action from 0.1.7 to 0.1.8 (#8)

Bump yogeshlonkar/trivy-cache-action from 0.1.7 to 0.1.8 (#8) #17

Workflow file for this run

name: 'Build and Publish'
concurrency:
group: ${{ github.workflow }}-${{ ( github.ref == 'refs/heads/main' ) && format('ci-main-{0}', github.sha) || format('ci-main-{0}', github.ref) }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
schedule:
- cron: '19 21 * * TUE'
jobs:
build:
name: 'Build and push docker images'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 2
- name: 'Build tailormap-data images'
run: docker compose -f ./docker-compose.yml build --pull --parallel --compress --no-cache postgis oracle sqlserver
- name: 'Login to b3p.nl'
uses: docker/login-action@v3
with:
registry: docker.b3p.nl
username: ${{ secrets.B3P_DEPLOY_ACTOR }}
password: ${{ secrets.B3P_DEPLOY_TOKEN }}
- name: 'Push tailormap-data database images'
run: docker compose -f ./docker-compose.yml push postgis oracle sqlserver