Skip to content

Commit 74349f1

Browse files
authored
Merge branch 'main' into op2++_rework
2 parents 76b9ab2 + 9d89a56 commit 74349f1

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/ci-job.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232

3333
# ************************************************************************************************
3434
# BEGIN COMMON STEPS
35-
# These steps are run for each and every sub-job, on a clean runner.
35+
# These steps are run for each and every sub-job, on a clean runner.
3636
# ************************************************************************************
3737

3838
# TODO(mmastrac): these could be extracted to a `ci-common.yml`
3939
- name: Clone repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
- name: Install ARM runner tools
4343
if: ${{ inputs.os == 'ubuntu-22.04-arm64' }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
workflow_dispatch:
55
inputs:
66
releaseKind:
7-
description: 'Kind of release'
8-
default: 'minor'
7+
description: "Kind of release"
8+
default: "minor"
99
type: choice
1010
options:
1111
- patch
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Clone repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
token: ${{ secrets.DENOBOT_PAT }}
2626

.github/workflows/version_bump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
workflow_dispatch:
55
inputs:
66
releaseKind:
7-
description: 'Kind of release'
8-
default: 'minor'
7+
description: "Kind of release"
8+
default: "minor"
99
type: choice
1010
options:
1111
- minor
@@ -29,7 +29,7 @@ jobs:
2929
git config --global fetch.parallel 32
3030
3131
- name: Clone repository
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
token: ${{ secrets.DENOBOT_PAT }}
3535
submodules: recursive

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ repository = "https://github.com/denoland/deno_core"
1919

2020
[workspace.dependencies]
2121
# Local dependencies
22-
deno_core = { version = "0.302.0", path = "./core" }
23-
deno_ops = { version = "0.178.0", path = "./ops" }
24-
serde_v8 = { version = "0.211.0", path = "./serde_v8" }
22+
deno_core = { version = "0.303.0", path = "./core" }
23+
deno_ops = { version = "0.179.0", path = "./ops" }
24+
serde_v8 = { version = "0.212.0", path = "./serde_v8" }
2525
deno_core_testing = { path = "./testing" }
2626

2727
v8 = { version = "0.102.0", default-features = false }

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_core"
5-
version = "0.302.0"
5+
version = "0.303.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

ops/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_ops"
5-
version = "0.178.0"
5+
version = "0.179.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

serde_v8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "serde_v8"
5-
version = "0.211.0"
5+
version = "0.212.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

0 commit comments

Comments
 (0)