From 02e738ccd58a79d0a9306345a28d0b5e4de2f740 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 16:16:50 +0000 Subject: [PATCH] Bump webassembly/wasi-sdk in /build in the all group Bumps the all group in /build with 1 update: [webassembly/wasi-sdk](https://github.com/WebAssembly/wasi-sdk). Updates `webassembly/wasi-sdk` from wasi-sdk-27 to wasi-sdk-32 - [Release notes](https://github.com/WebAssembly/wasi-sdk/releases) - [Commits](https://github.com/WebAssembly/wasi-sdk/commits) Bump the all group with 4 updates Bumps the all group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `docker/setup-buildx-action` from 1 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v1...v4) Updates `actions/attest-build-provenance` from 3 to 4 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/v3...v4) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v8...v9) --- updated-dependencies: - dependency-name: webassembly/wasi-sdk dependency-version: wasi-sdk-32 dependency-type: direct:production dependency-group: all - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/attest-build-provenance dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/repro.yaml | 6 +++--- .github/workflows/test.yaml | 4 ++-- build/Dockerfile | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/repro.yaml b/.github/workflows/repro.yaml index 668e20f..2c6b653 100644 --- a/.github/workflows/repro.yaml +++ b/.github/workflows/repro.yaml @@ -14,11 +14,11 @@ jobs: attestations: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Checkout submodules run: git submodule update --init --recursive - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v4 - name: Compute original checksum run: sha256sum taglib.wasm > taglib.wasm.sum - name: Build taglib.wasm @@ -29,7 +29,7 @@ jobs: run: | sha256sum -c taglib.wasm.sum || exit 1 - name: Attest build provenance - uses: actions/attest-build-provenance@v3 + uses: actions/attest-build-provenance@v4 with: subject-path: | taglib.wasm diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2abc0e4..2a27aa2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,13 +10,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Golang with cache uses: magnetikonline/action-golang-cache@v5 with: go-version-file: go.mod - name: Lint - uses: golangci/golangci-lint-action@v8 + uses: golangci/golangci-lint-action@v9 with: install-mode: goinstall version: v2.4.0 diff --git a/build/Dockerfile b/build/Dockerfile index 6f7d69f..91d4b73 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/webassembly/wasi-sdk:wasi-sdk-27 +FROM ghcr.io/webassembly/wasi-sdk:wasi-sdk-32 RUN apt-get update && \ apt-get install -y --no-install-recommends curl && \