Skip to content

chore(deps): Bump github.com/Masterminds/semver/v3 from 3.4.0 to 3.5.0 #109

chore(deps): Bump github.com/Masterminds/semver/v3 from 3.4.0 to 3.5.0

chore(deps): Bump github.com/Masterminds/semver/v3 from 3.4.0 to 3.5.0 #109

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
jobs:
docker:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v6
- uses: docker/setup-buildx-action@v3
# Multi-arch builds for releases happen in release.yaml via GoReleaser
# (uses native runners + Go cross-compile, not QEMU). This job is a fast
# PR smoke test — single-platform, host-arch.
- uses: docker/login-action@v3
if: github.event_name == 'push'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
push: ${{ github.event_name == 'push' }}
tags: ghcr.io/stubbi/hermes-operator:dev,ghcr.io/stubbi/hermes-operator:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max