Skip to content

Commit

Permalink
Update action versions, and switch to 1st edition PDF
Browse files Browse the repository at this point in the history
  • Loading branch information
micahflee committed Jan 6, 2024
1 parent a845782 commit 0b1a65d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Install dependencies
run: |
Expand All @@ -31,13 +31,13 @@ jobs:
run: python .github/workflows/downloads/plot.py

- name: Upload CSV artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: downloads-csv
path: downloads.csv

- name: Upload PNG artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: downloads-png
path: downloads.png
4 changes: 2 additions & 2 deletions .github/workflows/downloads/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import io
from datetime import datetime

tag = "prerelease1"
filename = "Introduction.pdf"
tag = "edition1"
filename = "HacksLeaksRevelations.pdf"


def main():
Expand Down

0 comments on commit 0b1a65d

Please sign in to comment.