Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v7
# BuildStream requires tags to be able to find its version.
with:
fetch-depth: 0
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v7
# BuildStream requires tags to be able to find its version.
with:
fetch-depth: 0
Expand All @@ -98,7 +98,7 @@ jobs:
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v7
# BuildStream requires tags to be able to find its version.
with:
fetch-depth: 0
Expand All @@ -115,7 +115,7 @@ jobs:
docs

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docs
path: doc/build/html
Expand All @@ -128,7 +128,7 @@ jobs:
os: [ubuntu-24.04]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -138,7 +138,7 @@ jobs:
- name: Build wheels
run: pipx run cibuildwheel==v3.1.4

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels
path: ./wheelhouse/*.whl
Expand All @@ -160,11 +160,11 @@ jobs:
- wheels-manylinux_2_28-cp314

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 0

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: wheels
path: ./wheelhouse
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v7
# BuildStream requires tags to be able to find its version.
with:
fetch-depth: 0
Expand All @@ -38,7 +38,7 @@ jobs:
tar -C doc/build/html -zcf docs.tgz .

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docs
path: |
Expand All @@ -51,13 +51,13 @@ jobs:
steps:

- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: docs
path: docs

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v7
with:
ref: gh-pages
path: pages
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v7
# BuildStream requires tags to be able to find its version.
with:
fetch-depth: 0
Expand All @@ -35,7 +35,7 @@ jobs:

tar -C doc/build/html -zcf docs.tgz .

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: docs
path: docs.tgz
Expand All @@ -44,14 +44,14 @@ jobs:
name: "Build Python source distribution tarball"
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: sdist
path: dist/*.tar.gz
Expand All @@ -64,7 +64,7 @@ jobs:
os: [ubuntu-24.04]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -74,7 +74,7 @@ jobs:
- name: Build wheels
run: pipx run cibuildwheel==v3.1.4

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels
path: ./wheelhouse/*.whl
Expand All @@ -96,11 +96,11 @@ jobs:
- wheels-manylinux_2_28-cp314

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 0

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: wheels
path: ./wheelhouse
Expand All @@ -114,11 +114,11 @@ jobs:
needs: [build_docs, build_sdist, build_wheels, test_wheels]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 0

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: docs

Expand All @@ -134,12 +134,12 @@ jobs:
needs: [build_docs, build_sdist, build_wheels, test_wheels]
runs-on: ubuntu-24.04
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: sdist
path: dist

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: wheels
path: dist
Expand Down
Loading