Skip to content

Commit d2eab7f

Browse files
authoredMar 18, 2024
Update github action versions (project-chip#32584)
* Update github action versions actions/upload-artifact@v4 Wandalen/wretry.action@v1.4.10 * Make bootstrap-logs artifacts unique
1 parent 8f4c8b5 commit d2eab7f

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed
 

‎.github/actions/bootstrap-cache/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Bootstrap cache
33
runs:
44
using: "composite"
55
steps:
6-
- uses: Wandalen/wretry.action@v1.3.0
6+
- uses: Wandalen/wretry.action@v1.4.10
77
name: Bootstrap cache
88
continue-on-error: true
99
with:

‎.github/actions/checkout-submodules-and-bootstrap/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
bootstrap-log-name:
1212
description: "Bootstrap log name"
1313
required: false
14-
default: bootstrap-logs
14+
default: bootstrap-logs-${{ github.job }}
1515
runs:
1616
using: "composite"
1717
steps:

‎.github/actions/checkout-submodules/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
runs:
1212
using: "composite"
1313
steps:
14-
- uses: Wandalen/wretry.action@v1.3.0
14+
- uses: Wandalen/wretry.action@v1.4.10
1515
name: Checkout submodules
1616
with:
1717
command: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform ${{ inputs.platform }} ${{ inputs.extra-parameters }}

‎.github/actions/perform-codeql-analysis/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
with:
2828
sarif_file: "sarif-results/${{ inputs.language }}.sarif"
2929
- name: Upload loc as a Build Artifact
30-
uses: actions/upload-artifact@v2.2.0
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: sarif-results
3333
path: sarif-results

‎.github/actions/upload-bootstrap-logs/action.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ inputs:
44
bootstrap-log-name:
55
description: "Bootstrap log name"
66
required: false
7-
default: bootstrap-logs
7+
default: bootstrap-logs-${{ github.job }}
88
runs:
99
using: "composite"
1010
steps:
1111
- name: Uploading bootstrap logs
12-
uses: actions/upload-artifact@v3
12+
uses: actions/upload-artifact@v4
1313
if: ${{ always() && !env.ACT }}
1414
with:
1515
name: ${{ inputs.bootstrap-log-name }}

‎.github/actions/upload-size-reports/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
using: "composite"
1010
steps:
1111
- name: Uploading Size Reports
12-
uses: actions/upload-artifact@v3
12+
uses: actions/upload-artifact@v4
1313
if: ${{ !env.ACT }}
1414
with:
1515
name: Size,${{ inputs.platform-name }}-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }}

‎.github/workflows/cirque.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Get Cirque Bootstrap cache key
7272
id: cirque-bootstrap-cache-key
7373
run: echo "val=$(scripts/tests/cirque_tests.sh cachekeyhash)" >> $GITHUB_OUTPUT
74-
- uses: Wandalen/wretry.action@v1.4.5
74+
- uses: Wandalen/wretry.action@v1.4.10
7575
name: Cirque Bootstrap cache
7676
if: ${{ !env.ACT }}
7777
continue-on-error: true

‎.github/workflows/unit_integration_test.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
uses: ./.github/actions/checkout-submodules-and-bootstrap
5151
with:
5252
platform: linux
53+
bootstrap-log-name: bootstrap-logs-unittest-${{ matrix.type }}
5354
- name: Artifact suffix
5455
id: outsuffix
5556
uses: haya14busa/action-cond@v1

0 commit comments

Comments
 (0)
Please sign in to comment.