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
2 changes: 1 addition & 1 deletion .github/workflows/build_arduino.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: sketch reports
if: inputs.enable-deltas-report
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
steps:
- name: Checkout repo w/o history
if: endsWith(github.repository, 'RF24Gateway') == false
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Checkout repo w/ history
if: endsWith(github.repository, 'RF24Gateway')
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: get latest release version number
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
cd doxygen-$DOXYGEN_VERSION
sudo make install

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: overwrite doxygen tags
working-directory: docs
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
with:
python-version: 3.x

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: download XML artifact
uses: actions/download-artifact@v6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_linux_cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
echo "deps=$lib_deps" >> $GITHUB_OUTPUT

- name: checkout RF24
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/RF24
path: RF24
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:

- name: checkout RF24Network
if: contains(steps.lib-info.outputs.deps, 'RF24Network') || endsWith(github.repository, 'RF24Network')
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/RF24Network
path: RF24Network
Expand All @@ -168,7 +168,7 @@ jobs:

- name: checkout RF24Mesh repo
if: contains(steps.lib-info.outputs.deps, 'RF24Mesh') || endsWith(github.repository, 'RF24Mesh')
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/RF24Mesh
path: RF24Mesh
Expand All @@ -187,7 +187,7 @@ jobs:

- name: checkout RF24Gateway repo
if: endsWith(github.repository, 'RF24Gateway')
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/RF24Gateway
fetch-depth: 0 # for version number fetching in cmake
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_pico_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@ jobs:
echo "deps=$lib_deps" >> $GITHUB_OUTPUT

- name: checkout RF24 lib
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/RF24
path: RF24
ref: ${{ inputs.rf24-ref }}

- name: checkout RF24Network lib
if: contains(steps.lib-info.outputs.deps, 'RF24Network') || endsWith(github.repository, 'RF24Network')
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/RF24Network
path: RF24Network
ref: ${{ inputs.rf24network-ref }}

- name: checkout RF24Mesh lib
if: endsWith(github.repository, 'RF24Mesh')
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: RF24Mesh
ref: ${{ inputs.rf24mesh-ref }}
Expand All @@ -73,7 +73,7 @@ jobs:
run: sudo apt update && sudo apt install gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential

- name: Clone pico-sdk
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: raspberrypi/pico-sdk
# master branch is latest stable release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
with:
python-version: 3.x

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: get lib info
id: lib-info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump_version_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout ${{ inputs.repo }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: nRF24/${{ inputs.repo }}
ref: ${{ inputs.branch }}
Expand All @@ -50,7 +50,7 @@ jobs:
token: ${{ secrets.BUMP_N_RELEASE }}

- name: checkout org repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: org-repo

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cpp_linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: 3.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_deploy_platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: get lib info
id: lib-info
Expand Down