Skip to content

Commit

Permalink
Bump the ci-dependencies group across 1 directory with 5 updates
Browse files Browse the repository at this point in the history
Bumps the ci-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `3.5.3` | `4.1.7` |
| [teatimeguest/setup-texlive-action](https://github.com/teatimeguest/setup-texlive-action) | `e69e0852590264df4a35dbc6cc94009a2466a562` | `d12a3c1385fbc2f10e16971f204daa705c63e34d` |
| [actions/setup-python](https://github.com/actions/setup-python) | `4.7.0` | `5.1.1` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3.1.2` | `4.3.4` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `3.0.2` | `4.1.8` |



Updates `actions/checkout` from 3.5.3 to 4.1.7
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@c85c95e...692973e)

Updates `teatimeguest/setup-texlive-action` from e69e0852590264df4a35dbc6cc94009a2466a562 to d12a3c1385fbc2f10e16971f204daa705c63e34d
- [Release notes](https://github.com/teatimeguest/setup-texlive-action/releases)
- [Commits](teatimeguest/setup-texlive-action@e69e085...d12a3c1)

Updates `actions/setup-python` from 4.7.0 to 5.1.1
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@61a6322...39cd149)

Updates `actions/upload-artifact` from 3.1.2 to 4.3.4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@0b7f8ab...0b2256b)

Updates `actions/download-artifact` from 3.0.2 to 4.1.8
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@9bc31d5...fa0a91b)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ci-dependencies
- dependency-name: teatimeguest/setup-texlive-action
  dependency-type: direct:production
  dependency-group: ci-dependencies
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ci-dependencies
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ci-dependencies
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 1, 2024
1 parent a25f368 commit afe8ca8
Showing 1 changed file with 11 additions and 11 deletions.
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@692973e3d937129bcbf40652eb9f2f61becf3332

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

- name: Setup Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # 4.7.0
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
with:
python-version: "3.11"

- name: Build PDFs
run: python build.py

- name: Upload PDFs
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
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@692973e3d937129bcbf40652eb9f2f61becf3332

- 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@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
with:
python-version: "3.11"

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

- name: Upload PNG
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
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@692973e3d937129bcbf40652eb9f2f61becf3332

- 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

0 comments on commit afe8ca8

Please sign in to comment.