From e859dd31fa55aaa1a2b9ecbe09c98106ebcb515e Mon Sep 17 00:00:00 2001 From: Alex Kretzschmar Date: Fri, 31 Jul 2026 10:12:13 -0400 Subject: [PATCH] Update GitHub Actions to Node 24 runtimes --- .github/workflows/ci.yml | 4 ++-- .github/workflows/scrape.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48dfa46f..b09a290c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,9 +6,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: "3.12" - name: Install dependencies diff --git a/.github/workflows/scrape.yml b/.github/workflows/scrape.yml index 8968d05b..e34fb337 100644 --- a/.github/workflows/scrape.yml +++ b/.github/workflows/scrape.yml @@ -23,11 +23,11 @@ jobs: scrape: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v7 # scrape fireside for latest shows - name: Setup Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v7 with: python-version: '3.12' architecture: 'x64' @@ -37,7 +37,7 @@ jobs: python3 scrape.py # automatically adds changed files in docs directory to git - - uses: stefanzweifel/git-auto-commit-action@v5 + - uses: stefanzweifel/git-auto-commit-action@v7 with: commit_message: "Automatically scraped and committed via a GitHub Action." commit_user_name: GitHub Action @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-latest needs: scrape steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v7 # Build - name: Pull latest changes on VPS