Skip to content

Commit d9d8c9a

Browse files
committed
bugfix: Add runs-on value for gcr and azure cleanups
1 parent 251e18f commit d9d8c9a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/azure-cleanup.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ on:
3030
jobs:
3131
clean_up:
3232
name: Clean up Azure Resource Groups
33+
runs-on: ubuntu-latest
3334
steps:
3435
- name: Azure Login
3536
uses: azure/login@v1

.github/workflows/gcr-cleanup.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ on:
3030
jobs:
3131
clean_up:
3232
name: Clean up GCR Services
33+
runs-on: ubuntu-latest
3334
steps:
3435
- id: auth
3536
name: Configure GCR credentials
@@ -43,4 +44,4 @@ jobs:
4344
version: ">= 363.0.0"
4445

4546
- name: gcloud CLI Cleanup
46-
run: gcloud run services list --format="table(name)" | xargs -P 10 -n1 gcloud run services delete --region us-west1 --quiet
47+
run: gcloud run services list --format="table[no-heading](name)" | xargs -P 10 -n1 gcloud run services delete --region us-west1 --quiet

0 commit comments

Comments
 (0)