From fe576813dd5cd5637d18a479f8e8f86f0c1e5b54 Mon Sep 17 00:00:00 2001 From: John Goodliff Date: Mon, 11 Mar 2024 18:24:42 -0600 Subject: [PATCH] Update workflow actions to latest version --- .github/workflows/archive-discover-weekly.yml | 9 ++++----- .github/workflows/archive-release-radar.yml | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/archive-discover-weekly.yml b/.github/workflows/archive-discover-weekly.yml index cdee08b..e803bac 100644 --- a/.github/workflows/archive-discover-weekly.yml +++ b/.github/workflows/archive-discover-weekly.yml @@ -1,22 +1,21 @@ name: Archive Discover Weekly Playlist on: + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: schedule: # Run Mondays at 7:57 - cron: "57 7 * * 1" - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - jobs: archive_discover_weekly: runs-on: ubuntu-latest steps: - name: Checkout main - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4.7.1 + uses: actions/setup-python@v4 with: python-version: '3.12' cache: 'pip' diff --git a/.github/workflows/archive-release-radar.yml b/.github/workflows/archive-release-radar.yml index dafeb6f..ca976da 100644 --- a/.github/workflows/archive-release-radar.yml +++ b/.github/workflows/archive-release-radar.yml @@ -1,22 +1,21 @@ name: Archive Release Radar Playlist on: + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: schedule: # Run Fridays at 7:57 - cron: "57 7 * * 5" - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - jobs: archive_release_radar: runs-on: ubuntu-latest steps: - name: Checkout main - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4.7.1 + uses: actions/setup-python@v4 with: python-version: '3.12' cache: 'pip'