Skip to content

chore(deps): bump github.com/onsi/gomega from 1.27.8 to 1.27.10 #1720

chore(deps): bump github.com/onsi/gomega from 1.27.8 to 1.27.10

chore(deps): bump github.com/onsi/gomega from 1.27.8 to 1.27.10 #1720

Workflow file for this run

name: Build Images
on:
pull_request:
branches: [main]
jobs:
build_scaler:
runs-on: ubuntu-latest
container: ghcr.io/kedacore/build-tools:1.19.5
steps:
- uses: actions/checkout@v3
- name: Register workspace path
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Build The Scaler
run: |
COMMIT=$(git rev-parse --short HEAD)
VERSION=${COMMIT} make docker-build-scaler
build_operator:
runs-on: ubuntu-latest
container: ghcr.io/kedacore/build-tools:1.19.5
steps:
- uses: actions/checkout@v3
- name: Register workspace path
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Build The Operator
run: |
COMMIT=$(git rev-parse --short=7 HEAD)
VERSION=${COMMIT} make docker-build-operator
build_interceptor:
runs-on: ubuntu-latest
container: ghcr.io/kedacore/build-tools:1.19.5
steps:
- uses: actions/checkout@v3
- name: Register workspace path
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Build The Interceptor
run: |
COMMIT=$(git rev-parse --short=7 HEAD)
VERSION=${COMMIT} make docker-build-interceptor