Skip to content

Commit 783bc98

Browse files
committed
Pin sketch compilation actions to major version refs
Previously, the development versions of Arduino's sketch compilation actions were used in the project's GitHub Actions workflows. Using release versions of the actions instead provides a more stable CI system. Use of the major version ref will cause the workflow to benefit from ongoing development to the action up until such time as a new major release 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@v1` -> `uses: arduino/compile-sketches@v2`).
1 parent ed6838d commit 783bc98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
run: tree extras/
123123

124124
- name: Compile examples
125-
uses: arduino/compile-sketches@main
125+
uses: arduino/compile-sketches@v1
126126
with:
127127
fqbn: ${{ matrix.board.fqbn }}
128128
libraries: |

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

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

1111
steps:
1212
- name: Comment size deltas reports to PRs
13-
uses: arduino/report-size-deltas@main
13+
uses: arduino/report-size-deltas@v1

0 commit comments

Comments
 (0)