Skip to content

Commit 77ce72a

Browse files
committed
Use major version refs of GitHub Actions actions
Use of the major version ref will cause the workflow to benefit from ongoing development to the actions up until such time as a new major release of an action is made, at which time we would need to evaluate whether any changes to the workflow are required by the breaking change that triggered the major release before updating the major ref (e.g., `uses: arduino/compile-sketches@v2`).
1 parent 66fb35a commit 77ce72a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: pip3 install pyserial
5757

5858
- name: Compile examples
59-
uses: arduino/compile-sketches@main
59+
uses: arduino/compile-sketches@v1
6060
with:
6161
github-token: ${{ secrets.GITHUB_TOKEN }}
6262
platforms: ${{ matrix.platforms }}

.github/workflows/report-size-deltas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# See: https://github.com/arduino/actions/blob/master/libraries/report-size-deltas/README.md
1717
- name: Comment size deltas reports to PRs
18-
uses: arduino/report-size-deltas@main
18+
uses: arduino/report-size-deltas@v1
1919
with:
2020
# The name of the workflow artifact created by the "Compile Examples" workflow
2121
sketches-reports-source: sketches-reports

.github/workflows/spell-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121

2222
# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
2323
- name: Spell check
24-
uses: codespell-project/actions-codespell@master
24+
uses: codespell-project/actions-codespell@v1

0 commit comments

Comments
 (0)