From f3f9fa770d05af8671e5a6253fd9e1be00a228d1 Mon Sep 17 00:00:00 2001 From: Kyle Wilcox Date: Wed, 10 Jun 2026 20:02:26 -0400 Subject: [PATCH 1/2] Bump GitHub Actions to Node 24-compatible versions --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96eab687..f80bc487 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,9 +17,9 @@ jobs: # for tagging the commit contents: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v6 name: Install Python with: python-version: 3.12 @@ -67,7 +67,7 @@ jobs: echo "release_version=$release_version" >> $GITHUB_OUTPUT echo "release_tag=$release_tag" >> $GITHUB_OUTPUT - name: Tag commit - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8 with: script: | github.rest.git.createRef({ diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7ac3c6fb..3d3e52d2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,7 @@ jobs: container: python:${{ matrix.python-version }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Lint code run: | @@ -50,7 +50,7 @@ jobs: --health-retries 5 steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Install dependencies run: | From 1262fdb38f91609fcd8a6f58869115f44082e6dd Mon Sep 17 00:00:00 2001 From: Kyle Wilcox Date: Wed, 10 Jun 2026 23:41:57 -0400 Subject: [PATCH 2/2] Add pytz to requirements (used by cron schedule helper) --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index d0c4fe88..0116e1b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ click==8.1.7 redis==6.1.0 structlog==24.1.0 croniter +pytz