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/arduino_size_deltas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
pattern: arduino-deltas-*
path: ${{ inputs.reports-path }}

- uses: 2bndy5/arduino-report-size-deltas@969c1dc307505cd9550aafb5defc248bbb96182a # v1.1.1
- uses: 2bndy5/arduino-report-size-deltas@1fed6ecc76e1321a5e76ec8db9bfee64d994e097 # v1.2.0
with:
sketches-reports-source: ${{ inputs.reports-path }}
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@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
steps:
- name: Checkout repo w/o history
if: endsWith(github.repository, 'RF24Gateway') == false
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Checkout repo w/ history
if: endsWith(github.repository, 'RF24Gateway')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
if: inputs.install-graphviz == true
run: sudo apt-get install -y graphviz

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false

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@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: nRF24/RF24
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

- name: Checkout RF24Network
if: contains(steps.lib-info.outputs.deps, 'RF24Network') || endsWith(github.repository, 'RF24Network')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: nRF24/RF24Network
Expand All @@ -183,7 +183,7 @@ jobs:

- name: Checkout RF24Mesh repo
if: contains(steps.lib-info.outputs.deps, 'RF24Mesh') || endsWith(github.repository, 'RF24Mesh')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: nRF24/RF24Mesh
Expand All @@ -206,7 +206,7 @@ jobs:

- name: Checkout RF24Gateway repo
if: endsWith(github.repository, 'RF24Gateway')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: nRF24/RF24Gateway
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 @@ -51,7 +51,7 @@ jobs:
echo "deps=${lib_deps}" >> "${GITHUB_OUTPUT}"

- name: Checkout RF24 lib
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: nRF24/RF24
Expand All @@ -60,7 +60,7 @@ jobs:

- name: Checkout RF24Network lib
if: contains(steps.lib-info.outputs.deps, 'RF24Network') || endsWith(github.repository, 'RF24Network')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: nRF24/RF24Network
Expand All @@ -69,7 +69,7 @@ jobs:

- name: Checkout RF24Mesh lib
if: endsWith(github.repository, 'RF24Mesh')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
path: RF24Mesh
Expand All @@ -84,7 +84,7 @@ jobs:
build-essential

- name: Clone pico-sdk
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
repository: raspberrypi/pico-sdk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ jobs:
run_pio:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
path: project
persist-credentials: false

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: |-
~/.cache/pip
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:

- name: Checkout RF24Mesh library dependency
if: contains(steps.lib-info.outputs.rf24-deps, 'RF24Mesh') && !endsWith(github.repository, 'RF24Mesh')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: RF24Mesh
repository: nRF24/RF24Mesh
Expand All @@ -106,7 +106,7 @@ jobs:

- name: Checkout RF24Network library dependency
if: contains(steps.lib-info.outputs.rf24-deps, 'RF24Network') && !endsWith(github.repository, 'RF24Network')
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: RF24Network
repository: nRF24/RF24Network
Expand All @@ -115,7 +115,7 @@ jobs:

- name: Checkout RF24 library dependency
if: endsWith(github.repository, 'RF24') == false
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: RF24
repository: nRF24/RF24
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 @@ -46,7 +46,7 @@ jobs:
# pull-requests: read # to read PR info when regenerating the changelog
steps:
- name: Checkout ${{ inputs.repo }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: true # needed for `git push`
repository: nRF24/${{ inputs.repo }}
Expand All @@ -56,7 +56,7 @@ jobs:
token: ${{ secrets.BUMP_N_RELEASE }} # zizmor: ignore[secrets-outside-env]

- name: Checkout org repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
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 @@ -23,7 +23,7 @@ jobs:
# allow cpp-linter to detect which files changed
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: CI Workflows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down