You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, due to the lack of a release, the only option was to use the default branch name for the action refs. Using
release versions provides a more stable experience for the ordinary users of these actions and also eases ongoing
development work on the actions.
Use of the major version ref will cause the workflow to benefit from ongoing development to the action at each patch or
minor release up until such time as a new major release is made, at which time the user will be given the opportunity
to evaluate whether any changes to the workflow are required by the breaking change that triggered the major release
before manually updating the major ref (e.g., `uses: arduino/report-size-deltas@v2`).
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ jobs:
69
69
build:
70
70
runs-on: ubuntu-latest
71
71
steps:
72
-
- uses: arduino/report-size-deltas@main
72
+
- uses: arduino/report-size-deltas@v1
73
73
```
74
74
75
75
This must be used in conjunction with a workflow that runs the [`arduino/compile-sketches`](https://github.com/arduino/compile-sketches) action and uploads the resulting sketches report to a [workflow artifact](https://help.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts):
0 commit comments