Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.13.0 (#1326) #406
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and push probe image. | |
on: | |
push: | |
branches: | |
- main | |
- stage | |
- production | |
jobs: | |
build-push: | |
name: "Build & Push Probe" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: n1hility/cancel-previous-runs@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.20" | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Cache go module | |
uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Build and publish probe image to quay.io | |
env: | |
QUAY_USER: ${{ secrets.QUAY_RHACS_ENG_PROBE_RW_USERNAME }} | |
QUAY_TOKEN: ${{ secrets.QUAY_RHACS_ENG_PROBE_RW_PASSWORD }} | |
QUAY_IMAGE_REPOSITORY: rhacs-eng/blackbox-monitoring-probe-service | |
run: | | |
chmod +x ./build_push_probe.sh | |
./build_push_probe.sh |