mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-09 07:17:10 -05:00
* deps: update GitHub action dependencies * ci: dont update Go through renovate --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems>
26 lines
721 B
YAML
26 lines
721 B
YAML
name: e2e cleanup
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *" # At 00:00 every day
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
cleanup:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
|
|
- name: Cleanup
|
|
uses: ./.github/actions/e2e_cleanup_timeframe
|
|
with:
|
|
ghToken: ${{ secrets.GITHUB_TOKEN }}
|
|
encryptionSecret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }}
|
|
azure_credentials: ${{ secrets.AZURE_E2E_DESTROY_CREDENTIALS }}
|
|
openStackCloudsYaml: ${{ secrets.STACKIT_CI_CLOUDS_YAML }}
|
|
stackitUat: ${{ secrets.STACKIT_CI_UAT }}
|