Skip to content

Commit 349d87f

Browse files
committed
Merge branch 'main' into check_secure_boot
2 parents 4b08b40 + e44d8a3 commit 349d87f

File tree

404 files changed

+33700
-4955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404 files changed

+33700
-4955
lines changed

.github/workflows/black.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
check-with-black:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
15+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1616
with:
1717
persist-credentials: false
18-
- uses: psf/black@8a737e727ac5ab2f1d4cf5876720ed276dc8dc4b
18+
- uses: psf/black@af0ba72a73598c76189d6dd1b21d8532255d5942
1919
with:
2020
options: "--check --diff --line-length 79 --extend-exclude '/vendor/'"

.github/workflows/checkbox-beta-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sudo apt update -qq
2525
sudo apt install -qq -y gh
2626
- name: Checkout checkbox monorepo
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2828
with:
2929
fetch-depth: 0
3030
persist-credentials: false
@@ -52,14 +52,12 @@ jobs:
5252
sudo apt update -qq
5353
sudo apt install -qq -y python3-launchpadlib
5454
- name: Checkout checkbox monorepo
55-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
55+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
5656
with:
5757
persist-credentials: false
5858
- name: Copy deb packages from edge to beta ppa
5959
env:
60-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6160
LP_CREDENTIALS: ${{ secrets.LP_CREDS }}
62-
CHECKBOX_REPO: ${{ github.repository }}
6361
run: |
6462
tools/release/lp_copy_packages.py checkbox-dev edge checkbox-dev beta
6563

.github/workflows/checkbox-ce-oem-daily-builds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
outputs:
2222
new_commit_count: ${{ steps.commit_check.outputs.new_commit_count }}
2323
steps:
24-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
24+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2525
with:
2626
fetch-depth: 0
2727
persist-credentials: false

.github/workflows/checkbox-ce-oem-daily-cross-builds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
4747
name: Frontend ${{ matrix.type }}${{ matrix.release }} (${{ matrix.arch }})
4848
steps:
49-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
49+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
5050
with:
5151
fetch-depth: 0
5252
persist-credentials: false

.github/workflows/checkbox-ce-oem-daily-native-builds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
4747
name: Frontend ${{ matrix.type }}${{ matrix.release }} (${{matrix.arch}})
4848
steps:
49-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
49+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
5050
with:
5151
fetch-depth: 0
5252
persist-credentials: false

.github/workflows/checkbox-ce-oem-edge-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
SNAPCRAFT_BUILDER_ID: checkbox-${{ matrix.type }}${{ matrix.releases }}-${{ github.run_id }}
3434
name: Frontend ${{ matrix.type }}${{ matrix.releases }}
3535
steps:
36-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
36+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3737
with:
3838
fetch-depth: 0
3939
persist-credentials: false

.github/workflows/checkbox-daily-cross-builds.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,16 @@ jobs:
3232
arch: amd64
3333
- release: 16
3434
arch: arm64
35+
- release: 22
36+
arch: riscv64
37+
- release: 24
38+
arch: riscv64
3539
# uc16 needs ubuntu20 because we need cgroup v1 to build it
3640
runs-on: ${{ matrix.release == 16 && fromJson('["self-hosted", "focal"]') || 'ubuntu-latest' }}
3741
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
3842
name: Runtime ${{ matrix.release }} (${{ matrix.arch }})
3943
steps:
40-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
44+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
4145
with:
4246
fetch-depth: 0
4347
persist-credentials: false
@@ -111,12 +115,19 @@ jobs:
111115
arch: amd64
112116
- release: 24
113117
arch: arm64
118+
include:
119+
- release: 22
120+
arch: riscv64
121+
type: uc
122+
- release: 24
123+
arch: riscv64
124+
type: uc
114125
# uc16 needs ubuntu20 because we need cgroup v1 to build it
115126
runs-on: ${{ matrix.release == 16 && fromJson('["self-hosted", "focal"]') || 'ubuntu-latest' }}
116127
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
117128
name: Frontend ${{ matrix.type }}${{ matrix.release }} (${{ matrix.arch }})
118129
steps:
119-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
130+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
120131
with:
121132
fetch-depth: 0
122133
persist-credentials: false

.github/workflows/checkbox-daily-native-builds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
4848
name: Runtime ${{ matrix.release }} (${{matrix.arch}})
4949
steps:
50-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
50+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
5151
with:
5252
fetch-depth: 0
5353
persist-credentials: false
@@ -122,7 +122,7 @@ jobs:
122122
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
123123
name: Frontend ${{ matrix.type }}${{ matrix.release }} (${{matrix.arch}})
124124
steps:
125-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
125+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
126126
with:
127127
fetch-depth: 0
128128
persist-credentials: false

.github/workflows/checkbox-dss-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
outputs:
2424
build_required: ${{ steps.check_diff.outputs.build_required }}
2525
steps:
26-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
26+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2727
with:
2828
fetch-depth: 0
2929
persist-credentials: false
@@ -52,7 +52,7 @@ jobs:
5252
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
5353
name: Checkbox DSS validation snap
5454
steps:
55-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
55+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
5656
with:
5757
fetch-depth: 0
5858
persist-credentials: false

.github/workflows/checkbox-promote-beta-to-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
checkbox_track: uc22
6060
steps:
6161
- name: Checkout checkbox monorepo
62-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
62+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
6363
with:
6464
persist-credentials: false
6565

0 commit comments

Comments
 (0)