-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Renovate Bot
committed
Dec 29, 2024
1 parent
6716b80
commit 6dee5ab
Showing
12 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Prepare Arduino IDE compatibility | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
|
@@ -81,12 +81,12 @@ jobs: | |
cp secrets.ini.template secrets.ini | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version-file: '.python-version' | ||
|
||
- name: Cache PlatformIO | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: | | ||
~/.cache/pip | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Prepare Arduino IDE compatibility | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,10 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Cpp Lint Full | ||
uses: cpp-linter/[email protected].1 | ||
uses: cpp-linter/[email protected].4 | ||
id: linter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: CPP Lint | ||
uses: cpp-linter/[email protected].1 | ||
uses: cpp-linter/[email protected].4 | ||
id: linter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Doxygen | ||
uses: mattnotmitt/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
|
||
- name: markdownlint-cli | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,14 +18,14 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Copy secrets template | ||
run: | | ||
cp secrets.ini.template secrets.ini | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version-file: '.python-version' | ||
|
||
|
@@ -40,15 +40,15 @@ jobs: | |
- name: Restore Cache PIP | ||
id: cache-restore-pip | ||
uses: actions/cache/restore@v4.0.2 | ||
uses: actions/cache/restore@v4.2.0 | ||
with: | ||
path: | | ||
${{ env.PIP_CACHE_FOLDER }} | ||
key: ${{ steps.cache-keys.outputs.pip }} | ||
|
||
- name: Restore Cache PlatformIO | ||
id: cache-restore-platformio | ||
uses: actions/cache/restore@v4.0.2 | ||
uses: actions/cache/restore@v4.2.0 | ||
with: | ||
path: | | ||
${{ env.PLATFORMIO_CACHE_FOLDER }} | ||
|
@@ -132,15 +132,15 @@ jobs: | |
|
||
- name: Save Cache Pip | ||
if: ${{ steps.cache-updates.outputs.pip == 'true' }} | ||
uses: actions/cache/save@v4.0.2 | ||
uses: actions/cache/save@v4.2.0 | ||
with: | ||
path: | | ||
${{ env.PIP_CACHE_FOLDER }} | ||
key: ${{ steps.cache-keys.outputs.pip }} | ||
|
||
- name: Save Cache Platformio | ||
if: ${{ steps.cache-updates.outputs.platformio == 'true' }} | ||
uses: actions/cache/save@v4.0.2 | ||
uses: actions/cache/save@v4.2.0 | ||
with: | ||
path: | | ||
${{ env.PLATFORMIO_CACHE_FOLDER }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,19 +14,19 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Copy secrets template | ||
run: | | ||
cp secrets.ini.template secrets.ini | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version-file: '.python-version' | ||
|
||
- name: Cache PlatformIO | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: | | ||
~/.cache/pip | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,30 +10,30 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Spellcheck | ||
uses: reviewdog/action-misspell@v1.23.0 | ||
uses: reviewdog/action-misspell@v1.26.1 | ||
with: | ||
reporter: github-pr-review | ||
fail_on_error: true | ||
locale: US | ||
ignore: mosquitto | ||
|
||
- name: Action lint | ||
uses: reviewdog/action-actionlint@v1.57.0 | ||
uses: reviewdog/action-actionlint@v1.61.0 | ||
with: | ||
reporter: github-pr-review | ||
fail_on_error: true | ||
|
||
- name: YAML lint | ||
uses: reviewdog/action-yamllint@v1.19.0 | ||
uses: reviewdog/action-yamllint@v1.20.0 | ||
with: | ||
reporter: github-pr-review | ||
fail_on_error: true | ||
|
||
- name: Markdown lint | ||
uses: reviewdog/action-markdownlint@v0.25.0 | ||
uses: reviewdog/action-markdownlint@v0.26.0 | ||
with: | ||
reporter: github-pr-review | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Spell check | ||
uses: codespell-project/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.12.7 | ||
3.13.1 |