From 689e452b81fdbb215b37f5833397d4c6fe16fc37 Mon Sep 17 00:00:00 2001 From: Jamie Dubs Date: Tue, 7 Oct 2025 11:08:21 -0400 Subject: [PATCH 1/2] Upgrade to non-deprecated actions/download-artifact@v4 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fd261c5..10f491c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: run: docker save hiett/serverless-redis-http:latest -o /tmp/serverless-redis-http.tar - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: serverless-redis-http path: /tmp/serverless-redis-http.tar @@ -50,7 +50,7 @@ jobs: bun-version: latest - name: Download SRH artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: serverless-redis-http path: /tmp From 78d6caed0dfe612cc906cc5f5472985a7452b8ba Mon Sep 17 00:00:00 2001 From: Jamie Dubs Date: Tue, 7 Oct 2025 11:09:52 -0400 Subject: [PATCH 2/2] Try running for pull requests too, so I can test it in this PR --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 10f491c..b4d41ed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,7 @@ on: - 'mix.lock' schedule: - cron: '0 12 * * *' + pull_request: env: SRH_TOKEN: example_token @@ -82,4 +83,4 @@ jobs: run: bun run test env: UPSTASH_REDIS_REST_URL: http://localhost:8080 - UPSTASH_REDIS_REST_TOKEN: ${{ env.SRH_TOKEN }} \ No newline at end of file + UPSTASH_REDIS_REST_TOKEN: ${{ env.SRH_TOKEN }}