Skip to content

Commit 833bb5e

Browse files
committed
Use major version ref of sketch compilation action
Previously, due to the lack of a release, the development versions of the sketch compilation actions were used. Using release versions provides a more stable CI system for the ArduinoCore-mbed project. 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 2ac4661 commit 833bb5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/checkout@v2
4141

4242
- name: Compile examples
43-
uses: arduino/compile-sketches@main
43+
uses: arduino/compile-sketches@v1
4444
with:
4545
github-token: ${{ secrets.GITHUB_TOKEN }}
4646
fqbn: ${{ matrix.board.fqbn }}

0 commit comments

Comments
 (0)