Skip to content

Commit 99c9f46

Browse files
committed
Update dependencies, test with 5.4 and 5.5 on CI
1 parent f1f1799 commit 99c9f46

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,29 @@ on:
77
branches: [main]
88

99
jobs:
10-
linux_build:
10+
linux_build_5_3:
1111
runs-on: ubuntu-20.04
1212

1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: swiftwasm/swiftwasm-action@v5.3
1616
with:
1717
shell-action: swift build --triple wasm32-unknown-wasi
18+
19+
linux_build_5_4:
20+
runs-on: ubuntu-20.04
21+
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: swiftwasm/swiftwasm-action@v5.4
25+
with:
26+
shell-action: swift build --triple wasm32-unknown-wasi
27+
28+
linux_build_5_5:
29+
runs-on: ubuntu-20.04
30+
31+
steps:
32+
- uses: actions/checkout@v2
33+
- uses: swiftwasm/swiftwasm-action@v5.5
34+
with:
35+
shell-action: swift build --triple wasm32-unknown-wasi

Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ let package = Package(
1010
.package(
1111
name: "JavaScriptKit",
1212
url: "https://github.com/swiftwasm/JavaScriptKit.git",
13-
from: "0.10.0"
13+
from: "0.13.0"
1414
),
15-
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.12.0"),
15+
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.13.0"),
1616
],
1717
targets: [
1818
.target(

0 commit comments

Comments
 (0)