Skip to content

Commit 9abead7

Browse files
authored
Merge pull request #690 from lightpanda-io/zig_0_14_1
Upgrade to Zig 0.14.1
2 parents 5ff3f71 + 6fb78a9 commit 9abead7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/actions/install/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
zig:
66
description: 'Zig version to install'
77
required: false
8-
default: '0.14.0'
8+
default: '0.14.1'
99
arch:
1010
description: 'CPU arch used to select the v8 lib'
1111
required: false
@@ -36,7 +36,7 @@ runs:
3636
shell: bash
3737
run: sudo apt-get install -y wget xz-utils python3 ca-certificates git pkg-config libglib2.0-dev gperf libexpat1-dev cmake clang
3838

39-
- uses: mlugg/setup-zig@v1
39+
- uses: mlugg/setup-zig@v2
4040
with:
4141
version: ${{ inputs.zig }}
4242

.github/workflows/zig-fmt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: zig-fmt
22

33
env:
4-
ZIG_VERSION: 0.14.0
4+
ZIG_VERSION: 0.14.1
55

66
on:
77
pull_request:
@@ -32,7 +32,7 @@ jobs:
3232
timeout-minutes: 15
3333

3434
steps:
35-
- uses: mlugg/setup-zig@v1
35+
- uses: mlugg/setup-zig@v2
3636
with:
3737
version: ${{ env.ZIG_VERSION }}
3838

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM ubuntu:24.04
22

33
ARG MINISIG=0.12
4-
ARG ZIG=0.14.0
4+
ARG ZIG=0.14.1
55
ARG ZIG_MINISIG=RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U
66
ARG ARCH=x86_64
7-
ARG V8=11.1.134
7+
ARG V8=13.6.233.8
88
ARG ZIG_V8=v0.1.24
99

1010
RUN apt-get update -yq && \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ You can also follow the progress of our Javascript support in our dedicated [zig
148148

149149
### Prerequisites
150150

151-
Lightpanda is written with [Zig](https://ziglang.org/) `0.14.0`. You have to
151+
Lightpanda is written with [Zig](https://ziglang.org/) `0.14.1`. You have to
152152
install it with the right version in order to build the project.
153153

154154
Lightpanda also depends on

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const builtin = @import("builtin");
2121

2222
/// Do not rename this constant. It is scanned by some scripts to determine
2323
/// which zig version to install.
24-
const recommended_zig_version = "0.14.0";
24+
const recommended_zig_version = "0.14.1";
2525

2626
pub fn build(b: *std.Build) !void {
2727
switch (comptime builtin.zig_version.order(std.SemanticVersion.parse(recommended_zig_version) catch unreachable)) {

0 commit comments

Comments
 (0)