Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 || '' }}
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python
if: matrix.language == 'python'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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: >-
Expand All @@ -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 🐙
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down