From 199943f1b750a14db797922f450eb205559ab9c3 Mon Sep 17 00:00:00 2001 From: Nic Bell Date: Mon, 17 Jun 2024 15:54:17 +0200 Subject: [PATCH] Update actions --- .github/workflows/checks.yml | 6 +++--- .../src/main/java/net/nicbell/materiallists/ListItem.kt | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 14ef608..2b16769 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -16,12 +16,12 @@ jobs: pull-requests: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: lfs: 'true' fetch-depth: 0 - name: set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' @@ -40,7 +40,7 @@ jobs: - name: Kover dump run: ./gradlew koverDump -q - name: Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ./build/reports/kover/reportMain.xml flags: unittests diff --git a/listitem/src/main/java/net/nicbell/materiallists/ListItem.kt b/listitem/src/main/java/net/nicbell/materiallists/ListItem.kt index e5abe04..63b5558 100644 --- a/listitem/src/main/java/net/nicbell/materiallists/ListItem.kt +++ b/listitem/src/main/java/net/nicbell/materiallists/ListItem.kt @@ -122,10 +122,10 @@ open class ListItem @JvmOverloads constructor( when { params.isMaterialListLeadingContent -> { - barrierTextStart.referencedIds = barrierTextStart.referencedIds + child.id + barrierTextStart.referencedIds += child.id } params.isMaterialListTrailingContent -> { - barrierTextEnd.referencedIds = barrierTextEnd.referencedIds + child.id + barrierTextEnd.referencedIds += child.id } } }