Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,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@v4
- uses: actions/checkout@v5
with:
# prefer head commit over merge commit in case of PRs
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- { name: '3.12', python: '3.12', python_version_var: 'PYTHON_VERSION_312' }

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/cache@v4
id: cache-npm
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
# BEGIN common steps - edit all occurrences if needed!
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -115,7 +115,7 @@ jobs:
run: curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Download environment
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: environment-3.12
path: /tmp
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:

steps:
# BEGIN common steps - edit all occurrences if needed!
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -257,7 +257,7 @@ jobs:
run: curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Download environment
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: environment-${{ matrix.name }}
path: /tmp
Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
# BEGIN common steps - edit all occurrences if needed!
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -316,7 +316,7 @@ jobs:
run: curl -LsSf https://astral.sh/uv/install.sh | sh

- name: Download environment
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: environment-3.12
path: /tmp
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@v4
uses: actions/checkout@v5

- name: Setup Python
if: matrix.language == 'python'
Expand Down
10 changes: 5 additions & 5 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@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
name: Set up Python 🐍
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
name: Download build artifacts 📦
- name: Create draft release 🐙
run: >-
Expand All @@ -91,16 +91,16 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
# Try uploading to Test PyPI first, in case something fails.
- name: Publish to Test PyPI 🧪
uses: pypa/[email protected].2
uses: pypa/[email protected].4
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: indico-wheel/
attestations: false
- name: Publish to PyPI 🚀
uses: pypa/[email protected].2
uses: pypa/[email protected].4
with:
packages-dir: indico-wheel/
- name: Publish GitHub release 🐙
Expand Down
2 changes: 1 addition & 1 deletion .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@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
name: Set up Python 🐍
with:
Expand Down