Skip to content

Commit c9fb74b

Browse files
committed
Pin GitHub Actions used by uProtocol actions
This helps to avoid unexpected breakage of our actions when the used GitHub Actions are updated. The pinned versions are the latest versions at the time of this commit.
1 parent e453e60 commit c9fb74b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/run-eclipse-dash/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ runs:
5353
- name: "Upload summary file"
5454
id: upload-summary
5555
if: ${{ steps.run-checks.outputs.checks-failed == '1' }}
56-
uses: actions/upload-artifact@v6
56+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5757
with:
5858
name: Dash summary report
5959
path: ${{ env.DASH_SUMMARY }}

.github/actions/run-eclipse-dash/check-3rd-party-licenses.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dash_summary=${DASH_SUMMARY:-"DASH_SUMMARY.txt"}
1818
project=${PROJECT:-"automotive.uprotocol"}
1919
token=${DASH_TOKEN:-""}
2020
# see https://github.com/eclipse-dash/dash-licenses#get-it
21-
dash_url="https://repo.eclipse.org/service/rest/v1/search/assets/download?sort=version&repository=dash-maven2-releases&maven.groupId=org.eclipse.dash&maven.artifactId=org.eclipse.dash.licenses&maven.extension=jar"
21+
dash_url="https://repo.eclipse.org/repository/dash-maven2-releases/org/eclipse/dash/org.eclipse.dash.licenses/1.1.0/org.eclipse.dash.licenses-1.1.0.jar"
2222

2323
if [[ ! -r "$dash_jar" ]]; then
2424
echo "Eclipse Dash JAR file [${dash_jar}] not found, downloading latest version from GitHub..."

.github/actions/run-oft/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ runs:
5050
5151
- name: Run OpenFastTrace
5252
id: run-oft
53-
uses: itsallcode/openfasttrace-github-action@v0.4.0
53+
uses: itsallcode/openfasttrace-github-action@e302f0817c05efdf45ce863925568c372a0b414e # v0.4.0
5454
with:
5555
file-patterns: ${{ inputs.file-patterns }}
5656
report-filename: ${{ env.TRACING_REPORT_FILE_NAME }}
5757
report-format: "html"
5858
tags: ${{ inputs.tags }}
5959

6060
- name: Upload tracing report (html)
61-
uses: actions/upload-artifact@v6
61+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6262
id: upload-tracing-report
6363
if: ${{ steps.run-oft.outputs.oft-exit-code != '' }}
6464
with:

0 commit comments

Comments
 (0)