mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 23:12:06 -03:30
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](11bd71901b...08c6903cd8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
38 lines
989 B
YAML
38 lines
989 B
YAML
name: Aurora Delete
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
name:
|
|
description: 'The name of the Aurora DB cluster'
|
|
type: string
|
|
required: true
|
|
region:
|
|
description: 'The AWS region used to host the Aurora DB'
|
|
type: string
|
|
required: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
delete:
|
|
name: Delete Aurora DB
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- name: Initialize AWS client
|
|
run: |
|
|
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
aws configure set region ${{ inputs.region }}
|
|
|
|
- id: delete
|
|
shell: bash
|
|
run: ./aurora_delete.sh
|
|
working-directory: .github/scripts/aws/rds
|
|
env:
|
|
AURORA_CLUSTER: ${{ inputs.name }}
|
|
AURORA_REGION: ${{ inputs.region }}
|