From 761110c3b0166edd808d20349d0bc7a79baeed22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 12:33:46 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/checkout` from 6 to 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/v6...v7) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.13.0...v1.14.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/ci.yml | 8 ++++---- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/pypi.yml | 14 +++++++------- .github/workflows/translations.yml | 4 ++-- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f94a5fe78b..376753bde7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-22.04 if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'build-wheel') steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # prefer head commit over merge commit in case of PRs ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }} @@ -61,7 +61,7 @@ jobs: run: npm ci - name: Build wheel ๐Ÿ— run: ./bin/maintenance/build-wheel.py indico --add-version-suffix - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 name: Upload build artifacts ๐Ÿ“ฆ with: name: indico-wheel diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16283bbbcd..a49c8a3d29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-22.04 steps: # BEGIN common steps (Python+Node) - edit all occurrences if needed! - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 @@ -170,7 +170,7 @@ jobs: steps: # BEGIN common steps (Python only) - edit all occurrences if needed! - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 @@ -216,7 +216,7 @@ jobs: steps: # BEGIN common steps (Python only) - edit all occurrences if needed! - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 @@ -242,7 +242,7 @@ jobs: runs-on: ubuntu-22.04 steps: # BEGIN common steps (Python+Node) - edit all occurrences if needed! - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 84852fd804..362860fae5 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Python if: matrix.language == 'python' diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 134df5e79d..a2a9cb0394 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -20,7 +20,7 @@ jobs: name: Build package ๐Ÿ“ฆ runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 name: Set up Python ๐Ÿ with: @@ -43,13 +43,13 @@ jobs: run: npm ci - name: Build wheel ๐Ÿ— run: ./bin/maintenance/build-wheel.py indico - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 name: Upload build artifacts ๐Ÿ“ฆ with: name: indico-wheel retention-days: 7 path: ./dist - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 name: Store Markdown changelog ๐Ÿ“œ with: name: changelog @@ -63,7 +63,7 @@ jobs: permissions: contents: write steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 name: Download build artifacts ๐Ÿ“ฆ - name: Create draft release ๐Ÿ™ run: >- @@ -87,16 +87,16 @@ jobs: contents: write id-token: write steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 # Try uploading to Test PyPI first, in case something fails. - name: Publish to Test PyPI ๐Ÿงช - uses: pypa/gh-action-pypi-publish@v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.14.0 with: repository-url: https://test.pypi.org/legacy/ packages-dir: indico-wheel/ attestations: false - name: Publish to PyPI ๐Ÿš€ - uses: pypa/gh-action-pypi-publish@v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.14.0 with: packages-dir: indico-wheel/ - name: Publish GitHub release ๐Ÿ™ diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index 5556a478e8..780d533df1 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -17,7 +17,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 name: Set up Python ๐Ÿ with: @@ -47,7 +47,7 @@ jobs: run: ./bin/maintenance/update_moment_locales.py - name: Build wheel ๐Ÿ— run: ./bin/maintenance/build-wheel.py indico --add-version-suffix --ignore-unclean - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 name: Upload build artifacts ๐Ÿ“ฆ with: name: indico-translation-wheel