From afe8ca8366a5eca196fe25f94dad29e888bdafd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 01:59:09 +0000 Subject: [PATCH] Bump the ci-dependencies group across 1 directory with 5 updates 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](https://github.com/actions/checkout/compare/c85c95e3d7251135ab7dc9ce3241c5835cc595a9...692973e3d937129bcbf40652eb9f2f61becf3332) Updates `teatimeguest/setup-texlive-action` from e69e0852590264df4a35dbc6cc94009a2466a562 to d12a3c1385fbc2f10e16971f204daa705c63e34d - [Release notes](https://github.com/teatimeguest/setup-texlive-action/releases) - [Commits](https://github.com/teatimeguest/setup-texlive-action/compare/e69e0852590264df4a35dbc6cc94009a2466a562...d12a3c1385fbc2f10e16971f204daa705c63e34d) Updates `actions/setup-python` from 4.7.0 to 5.1.1 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/61a6322f88396a6271a6ee3565807d608ecaddd1...39cd14951b08e74b54015e9e001cdefcf80e669f) Updates `actions/upload-artifact` from 3.1.2 to 4.3.4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/0b7f8abb1508181956e8e162db84b466c27e18ce...0b2256b8c012f0828dc542b3febcab082c67f72b) Updates `actions/download-artifact` from 3.0.2 to 4.1.8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/9bc31d5ccc31df68ecc42ccf4149144866c47d8a...fa0a91b85d4f404e444e00e005971372dc801d16) --- 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] --- .github/workflows/release.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 31788e1..7e70323 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,15 +15,15 @@ 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" @@ -31,7 +31,7 @@ jobs: run: python build.py - name: Upload PDFs - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b with: name: "pdfs" path: ".build/*.pdf" @@ -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" @@ -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" @@ -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: | @@ -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"