Skip to content

Commit

Permalink
Update workflow actions to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
jerboa88 committed Mar 12, 2024
1 parent 023eee1 commit fe57681
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/archive-discover-weekly.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/archive-release-radar.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit fe57681

Please sign in to comment.