chore(deps): update ghcr.io/cloudfoundry/app-autoscaler-release-tools:main docker digest to b89f25e #2430
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: Acceptance Tests Cleanup (Broker) | |
on: | |
pull_request: | |
types: [closed] | |
env: | |
PR_NUMBER: "${{ github.event.pull_request.number }}" | |
DEPLOYMENT_NAME: "autoscaler-${{ github.event.pull_request.number }}" | |
jobs: | |
deployment_cleanup: | |
name: Cleanup deployments | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main@sha256:b89f25eeea092104fb75e8e7eaf76b0dbd3156bec51ea234670ff0bdd1fc6e8b | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
path: app-autoscaler-release | |
ref: main | |
- uses: ./app-autoscaler-release/.github/actions/setup-environment | |
with: | |
ssh-key: ${{ secrets.BBL_SSH_KEY }} | |
- name: "clean up" | |
shell: bash | |
run: | | |
#! /usr/bin/env bash | |
set -eu -o pipefail | |
# The subsequent assignments are needed *HERE* because of: | |
# <https://github.com/actions/runner/issues/2058> or | |
# <https://github.com/actions/checkout/issues/785> | |
export BBL_STATE_PATH="${GITHUB_WORKSPACE}/bbl/bbl-state" | |
declare -r AUTOSCALER_DIR="${GITHUB_WORKSPACE}/app-autoscaler-release" | |
make --directory="${AUTOSCALER_DIR}" deploy-cleanup |