diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48dfa46..b09a290 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 8968d05..e34fb33 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