Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

env:
NODE_VERSION: '22'
GO_VERSION: '1.25'
GO_VERSION: '1.26.6'
RUST_SHARED_KEY: wavenav-rust
RUST_BROWSER_KEY: wavenav-browser-rust
ENGINE_COV_LINES: '90'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: '1.25'
go-version: '1.26.6'
cache-dependency-path: wml-server/go.mod

- name: Audit WML origin and Go standard library
Expand All @@ -164,7 +164,7 @@ jobs:
- name: Setup Go for pinned image tools
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: '1.25'
go-version: '1.26.6'
cache: false

- name: Cache pinned image audit tools
Expand Down
142 changes: 78 additions & 64 deletions marketing-site/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions scripts/tests/network-preview-deploy.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ test('production image inputs and runtime identities are immutable and non-root'
2
);
assert.match(kannelDockerfile, /FROM runtime-base AS production[\s\S]*USER 10001:10001/);
assert.match(wmlDockerfile, /FROM golang:1\.25-alpine@sha256:[0-9a-f]{64} AS build/);
assert.match(wmlDockerfile, /FROM golang:1\.26\.6-alpine@sha256:[0-9a-f]{64} AS build/);
assert.match(wmlDockerfile, /FROM scratch[\s\S]*USER 65532:65532/);
});

Expand Down Expand Up @@ -114,7 +114,10 @@ test('release installation verifies provenance and reseals before restarting ser
assert.match(installer, /loaded \$label image is not Linux AMD64/);
assert.match(installer, /chown 10001:10001 "\$secret_path"/);
assert.match(installer, /chmod 0400 "\$secret_path"/);
assert.match(installer, /docker compose --project-name waves-network-preview --env-file manifest.env/);
assert.match(
installer,
/docker compose --project-name waves-network-preview --env-file manifest.env/
);
const sealIndex = installer.indexOf('waves-docker-firewall set sealed');
const restartIndex = installer.indexOf('systemctl restart waves-network-preview.service');
assert.ok(sealIndex >= 0 && restartIndex > sealIndex);
Expand Down
Loading