From 1a6a2dbad00c7fd96d3a47115038bfa48ab2a616 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 29 Oct 2025 14:06:26 +0100 Subject: [PATCH 1/2] build: Use Github token (#1539) --- .github/workflows/review.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 51f8503..414798d 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -26,7 +26,7 @@ jobs: *.md *.sh reporter: github-pr-review - github_token: ${{ secrets.REPO_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Hadolint uses: reviewdog/action-hadolint@v1 @@ -34,28 +34,28 @@ jobs: level: warning reporter: github-pr-review hadolint_ignore: DL3006 DL3008 - github_token: ${{ secrets.REPO_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} - name: YamlLint uses: reviewdog/action-yamllint@v1 with: level: warning reporter: github-pr-review - github_token: ${{ secrets.REPO_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} - name: ActionLint uses: reviewdog/action-actionlint@v1 with: level: warning reporter: github-pr-review - github_token: ${{ secrets.REPO_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Shellformat uses: reviewdog/action-shfmt@v1 with: level: warning shfmt_flags: "-i 2 -ci -bn" - github_token: ${{ secrets.REPO_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Shellcheck uses: reviewdog/action-shellcheck@v1 @@ -63,4 +63,4 @@ jobs: level: warning reporter: github-pr-review shellcheck_flags: -x -e SC1091 -e SC2001 -e SC2002 -e SC2034 -e SC2064 -e SC2153 -e SC2317 -e SC2028 - github_token: ${{ secrets.REPO_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} From 9dd020d151e4de01dd054c4576048afd857ba0e6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 13:07:07 +0000 Subject: [PATCH 2/2] chore(deps): update qemux/qemu docker tag to v7.28 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bf6dab2..4d07613 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG VERSION_ARG="latest" FROM scratch AS build-amd64 -COPY --from=qemux/qemu:7.27 / / +COPY --from=qemux/qemu:7.28 / / ARG TARGETARCH ARG DEBCONF_NOWARNINGS="yes"