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
Update action dependencies of GitHub Actions workflows
The repository's GitHub Actions workflows use several GitHub Actions actions. The steps that use the actions pin the
dependency to a major version series. This means the specific dependency version is unmanaged within that major version
series, but the reference must be updated after there is a new major version release of the dependency.
Several of the dependencies were pinned to outdated major version refs, causing the workflows to miss the benefits of
recent development work on those dependencies. They are hereby updated to the latest major version refs. The breaking
changes that caused the major version bumps in the dependencies are not relevant to our usage of them so no additional
adjustments are needed in order to perform these bumps.
Copy file name to clipboardExpand all lines: .github/workflows/compile-examples.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ jobs:
95
95
96
96
# The source files are in a subfolder of the ArduinoCore-API repository, so it's not possible to clone it directly to the final destination in the core
97
97
- name: Checkout ArduinoCore-API
98
-
uses: actions/checkout@v2
98
+
uses: actions/checkout@v3
99
99
with:
100
100
repository: arduino/ArduinoCore-API
101
101
path: extras/ArduinoCore-API
@@ -110,7 +110,7 @@ jobs:
110
110
if: steps.checkapi.outputs.IS_API == 'true'
111
111
112
112
- name: Checkout Basic examples
113
-
uses: actions/checkout@v2
113
+
uses: actions/checkout@v3
114
114
with:
115
115
repository: arduino/arduino-examples
116
116
path: examples
@@ -163,7 +163,7 @@ jobs:
163
163
github-token: ${{ secrets.GITHUB_TOKEN }}
164
164
165
165
- name: Save memory usage change report as artifact
0 commit comments