-
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
Oct 25, 2024
1 parent
ce2d603
commit e3bb13d
Showing
12 changed files
with
23 additions
and
23 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.1.2 | ||
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].3 | ||
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].3 | ||
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.1.2 | ||
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.1.2 | ||
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.1.2 | ||
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.1.2 | ||
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.1.2 | ||
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,7 +10,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Spellcheck | ||
uses: reviewdog/[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 |
---|---|---|
|
@@ -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.0 |