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
6 changes: 3 additions & 3 deletions .github/workflows/push_release_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- name: Checkout with history to get latest tag
if: ${{ github.event_name != 'release' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Find nodebuilder version tag
Expand All @@ -46,7 +46,7 @@ jobs:
echo "NODEBUILDER_VERSION=$(git describe --tags --abbrev=0)" >> "${GITHUB_ENV}"
fi
- name: Checkout the latest release tag
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ env.NODEBUILDER_VERSION }}
- name: Set up Docker Buildx
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the latest release tag
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.build-and-push.outputs.nodebuilder-version }}
- name: Set up Docker Buildx
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
spelling: ${{ steps.filter.outputs.spelling }}
test: ${{ steps.filter.outputs.test }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dorny/paths-filter@v3
id: filter
with:
Expand All @@ -43,7 +43,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Renovate
uses: renovatebot/[email protected]
with:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint with shellcheck and shfmt
uses: luizm/[email protected]
env:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint workflow files
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
Expand All @@ -125,7 +125,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint Dockerfiles
uses: luke142367/[email protected]
with:
Expand All @@ -145,7 +145,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint the markdown
uses: avto-dev/markdown-lint@v1
with:
Expand All @@ -169,7 +169,7 @@ jobs:
# TODO: make this mandatory again with nodebuilder issue 2343
continue-on-error: true
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run linkspector on markdown
uses: umbrelladocs/action-linkspector@v1
with:
Expand All @@ -182,7 +182,7 @@ jobs:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Validate pull request title as a conventional commit
run: |
PR_TITLE="$(jq --raw-output .pull_request.title "$GITHUB_EVENT_PATH")"
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
check-environment-command: sw_vers && sysctl machdep.cpu.core_count machdep.cpu.thread_count machdep.cpu.brand_string && memory_pressure -Q
path-to-bitcoin-log: '/Users/runner/Library/Application Support/Bitcoin/debug.log'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check the current environment
run: |
uname -a
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Test the console output
uses: vmactions/freebsd-vm@v1
timeout-minutes: 180
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Test the console output
uses: vmactions/netbsd-vm@v1
timeout-minutes: 180
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Test the console output
uses: vmactions/openbsd-vm@v1
timeout-minutes: 180
Expand Down Expand Up @@ -443,7 +443,7 @@ jobs:
- { container: SUSE Enterprise, dockerfile: Dockerfile_sles }
- { container: Ubuntu, dockerfile: Dockerfile }
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check the current OS version
run: grep 'VERSION\|ID' /etc/os-release && uname -a
- name: Build the ${{ matrix.container }} docker image
Expand Down
Loading