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
144 changes: 72 additions & 72 deletions .github/workflows/ci.yaml

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions .github/workflows/coverage-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v8.1.0

- name: Install dependencies
run: bash -x .github/scripts/setup.sh
Expand All @@ -38,7 +38,7 @@ jobs:
uv run make -j $(nproc) testpack.tar.bz2

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cln-coverage-build
path: testpack.tar.bz2
Expand All @@ -60,15 +60,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v8.1.0

- name: Install dependencies
run: bash -x .github/scripts/setup.sh
Expand All @@ -77,7 +77,7 @@ jobs:
run: bash -x .github/scripts/install-bitcoind.sh

- name: Download build artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: cln-coverage-build

Expand All @@ -97,7 +97,7 @@ jobs:
uv run eatmydata pytest tests/ -n ${PYTEST_PAR} -vvv

- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: coverage-raw-${{ matrix.name }}
Expand All @@ -112,7 +112,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install LLVM tools
run: |
Expand All @@ -123,15 +123,15 @@ jobs:
sudo ln -sf /usr/bin/llvm-cov-18 /usr/bin/llvm-cov

- name: Download build artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: cln-coverage-build

- name: Unpack build
run: tar -xaf testpack.tar.bz2

- name: Download all coverage artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: coverage-raw-*
path: coverage-artifacts
Expand All @@ -155,7 +155,7 @@ jobs:
./contrib/coverage/generate-coverage-report.sh

- name: Upload to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v6
with:
files: coverage/merged.profdata
flags: integration-tests
Expand All @@ -164,7 +164,7 @@ jobs:
fail_ci_if_error: false

- name: Upload HTML report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-html-report
path: coverage/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crate-io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
release_rust:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: arduino/setup-protoc@v3
- uses: katyo/publish-crates@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.ref }} # Ensures the branch triggering the workflow is checked out
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
echo "ENV TAGS: ${{ env.TAGS }}"

- name: Build and push Docker tag - ${{ env.TAGS }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Prepare documentation directory
run: |
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
EOF

- name: Upload documentation artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: project-docs
path: docs-output
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
bitcoind-version: ["27.1"]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download Bitcoin ${{ matrix.bitcoind-version }} & install binaries
run: |
Expand All @@ -26,12 +26,12 @@ jobs:
rm -rf bitcoin-${BITCOIND_VERSION}-${TARGET_ARCH}.tar.gz bitcoin-${BITCOIND_VERSION}

- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v8.1.0

- name: Install dependencies
run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/publish-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,24 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download coverage artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: coverage-html-report
path: site-staging/coverage

- name: Download Python docs artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: python-api-docs
path: site-staging/python

- name: Download project docs artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: project-docs
Expand Down Expand Up @@ -289,16 +289,16 @@ jobs:
EOF

- name: Setup Pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: site-staging

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5

- name: Add summary
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
WORKDIR: contrib/pyln-proto
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# Need to fetch entire history in order to locate the version tag
fetch-depth: 0
Expand Down Expand Up @@ -60,12 +60,12 @@ jobs:
echo "DISTRIBUTION LOCATION: $DISTLOCATION"

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.10'

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v8.1.0

- name: Update pyln versions
id: update-versions
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-docs-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v8.1.0

- name: Install dependencies
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
make python-docs

- name: Upload documentation artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: python-api-docs
path: docs/python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rdme-docs-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repo 📚
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Sync doc/getting-started/ 🚀
uses: readmeio/rdme@v10
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/readme-rpc-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.9

Expand All @@ -32,7 +32,7 @@ jobs:
python -m pip install requests mako grpcio-tools

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v8.1.0

- name: Install dependencies
run: bash -x .github/scripts/setup.sh
Expand Down
Loading
Loading