Sweeper #949
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: Sweeper | |
on: | |
schedule: | |
- cron: '0 */12 * * *' | |
workflow_dispatch: | |
jobs: | |
sweeper: | |
permissions: | |
id-token: write # aws-actions/[email protected] | |
if: vars.CI_ACCOUNT_ID != '' || github.event_name == 'workflow_dispatch' | |
strategy: | |
fail-fast: false | |
max-parallel: 1 | |
matrix: | |
region: [us-east-2, us-west-2, eu-west-1, eu-north-1] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- name: configure aws credentials | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | |
with: | |
role-to-assume: arn:aws:iam::${{ vars.CI_ACCOUNT_ID }}:role/${{ vars.CI_ROLE_NAME }} | |
aws-region: ${{ matrix.region }} | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version-file: test/hack/resource/go.mod | |
check-latest: true | |
cache-dependency-path: "test/hack/resource/go.sum" | |
# eu-north-1 contains the soak tests and resources should be swept if they are older than 8 days | |
- run: | | |
if [[ "${{ matrix.region }}" == "eu-north-1" ]]; then | |
go run main.go --expiration 192h | |
else | |
go run main.go --expiration 12h | |
fi | |
working-directory: ./test/hack/resource/clean | |
name: "Run cleanup script" |