From 93dfe2166ed23991b537dbaea3c218619137ee10 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Wed, 12 Nov 2025 16:51:40 -0500 Subject: [PATCH 1/3] SWI-9027 Smoke Tests --- .github/workflows/test-smoke.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index 06695c81..95d0d97e 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -38,10 +38,10 @@ jobs: MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: zulu java-version: 21 From fd8f9b1ab7051ec3618466c7f5a5833f2b3bb819 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Wed, 12 Nov 2025 17:00:59 -0500 Subject: [PATCH 2/3] newline --- .github/workflows/test-smoke.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index 95d0d97e..4a1cfe93 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -8,6 +8,7 @@ on: - "src/test/java/com/bandwidth/sdk/smoke/*" - ".github/workflows/test-smoke.yml" + concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true @@ -38,10 +39,10 @@ jobs: MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v4 - name: Set up JDK - uses: actions/setup-java@v5 + uses: actions/setup-java@v4 with: distribution: zulu java-version: 21 From 00c89e8eb1a220f3a01f5a679e1e6cf04c4410f1 Mon Sep 17 00:00:00 2001 From: ckoegel Date: Wed, 12 Nov 2025 17:27:07 -0500 Subject: [PATCH 3/3] update cron --- .github/workflows/test-smoke.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index 4a1cfe93..6705719a 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -2,13 +2,12 @@ name: Smoke Tests on: schedule: - - cron: "0 4 * * *" + - cron: "*/30 * * * *" # Every 30 minutes pull_request: paths: - "src/test/java/com/bandwidth/sdk/smoke/*" - ".github/workflows/test-smoke.yml" - concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true