Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38c01c5

Browse files
committedSep 22, 2021
Use major version refs of arduino/report-size-deltas action
The `arduino/report-size-deltas` GitHub Actions action is used to provide feedback about the impact of a proposed change on sketch memory usage. Previously, due to the lack of a release, the development version of the action was used. Using release versions provides a more stable CI system for the 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/report-size-deltas@v2`).
1 parent 6ec0ef4 commit 38c01c5

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
@@ -120,7 +120,7 @@ jobs:
120120
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
121121
path: ${{ env.SKETCHES_REPORTS_PATH }}
122122

123-
- uses: arduino/report-size-deltas@main
123+
- uses: arduino/report-size-deltas@v1
124124
# If actions/download-artifact failed, there are no artifacts to report from.
125125
if: steps.download-artifact.outcome == 'success'
126126
with:

0 commit comments

Comments
 (0)
Please sign in to comment.