Skip to content

chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 (#21) #38

chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 (#21)

chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 (#21) #38

Workflow file for this run

name: Continuous Deployment
on:
push:
branches:
- main
permissions:
contents: read
packages: write
jobs:
cd:
name: Build Container Image
runs-on: ubuntu-latest
strategy:
matrix:
service: [ bar, foo ]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
- uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.0
id: meta
with:
images: |
ghcr.io/${{ github.actor }}/monorepo-${{ matrix.service }}
tags: |
type=sha,enable=true,format=long,priority=200
type=raw,enable=true,value=latest,priority=100
- uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@c382f710d39a5bb4e430307530a720f50c2d3318 # v6.0.0
with:
context: .
file: ${{ matrix.service }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}