From 2612407992ac820a16357581f4d4125b4d1fc2e9 Mon Sep 17 00:00:00 2001 From: Chris Guida Date: Fri, 26 Jan 2024 18:11:30 -0600 Subject: [PATCH] use latest release tag instead of master, update action versions --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 880a471b7..3b753fa9e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,14 +23,14 @@ jobs: deprecated: [0] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Checkout c-lightning@master - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: 'ElementsProject/lightning' path: 'lightning' - ref: 'master' + ref: '23.11' submodules: 'recursive' fetch-depth: 0 # Required for pyln versions to be recognized @@ -80,7 +80,7 @@ jobs: sudo make install - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}