From e7f32e912c934967f6402215e905b789cda6b578 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 06:22:07 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/reference.yml | 2 +- .github/workflows/static.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 214e3e99..b54c60b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Required by the `gen:wasm` step (GOOS=js GOARCH=wasm go build). - uses: actions/setup-go@v6 diff --git a/.github/workflows/reference.yml b/.github/workflows/reference.yml index c6e801f9..902b6793 100644 --- a/.github/workflows/reference.yml +++ b/.github/workflows/reference.yml @@ -15,7 +15,7 @@ jobs: drift-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-go@v6 with: go-version: 'stable' diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index f865aa21..c7b11609 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Required by the `gen:wasm` prebuild step, which compiles # examples/wasm-websocket to WebAssembly (GOOS=js GOARCH=wasm).