Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the ci-dependencies group across 1 directory with 5 updates #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938

- name: Setup Texlive Environment
uses: teatimeguest/setup-texlive-action@e69e0852590264df4a35dbc6cc94009a2466a562 # 3.3.0
uses: teatimeguest/setup-texlive-action@f8403fbb8e38c28da59f550951b959f3bdf00608 # 3.3.0
with:
package-file: DEPENDS.txt

- name: Setup Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # 4.7.0
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: "3.11"

- name: Build PDFs
run: python build.py

- name: Upload PDFs
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
with:
name: "pdfs"
path: ".build/*.pdf"
Expand All @@ -41,15 +41,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938

- name: Download PDFs
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "pdfs"

- name: Setup Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # 4.7.0
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: "3.11"

Expand All @@ -61,7 +61,7 @@ jobs:
run: python -m pdf2png anon-*-backend-python.pdf main.png

- name: Upload PNG
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
with:
name: "pngs"
path: "main.png"
Expand All @@ -75,7 +75,7 @@ jobs:
run: echo "timestamp=$(date +'%Y-%m-%dT%H-%MZ' --utc)" >> "$GITHUB_ENV"

- name: Checkout Repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938

- name: Tag this commit
run: |
Expand All @@ -88,12 +88,12 @@ jobs:
git describe

- name: Download PDFs
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "pdfs"

- name: Download PNGs
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: "pngs"

Expand Down
Loading