Skip to content

Commit

Permalink
Merge branch 'main' into op2++_rework
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy authored Aug 10, 2024
2 parents 76b9ab2 + 9d89a56 commit 74349f1
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:

# ************************************************************************************************
# BEGIN COMMON STEPS
# These steps are run for each and every sub-job, on a clean runner.
# These steps are run for each and every sub-job, on a clean runner.
# ************************************************************************************

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

- name: Install ARM runner tools
if: ${{ inputs.os == 'ubuntu-22.04-arm64' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
workflow_dispatch:
inputs:
releaseKind:
description: 'Kind of release'
default: 'minor'
description: "Kind of release"
default: "minor"
type: choice
options:
- patch
Expand All @@ -20,7 +20,7 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.DENOBOT_PAT }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
workflow_dispatch:
inputs:
releaseKind:
description: 'Kind of release'
default: 'minor'
description: "Kind of release"
default: "minor"
type: choice
options:
- minor
Expand All @@ -29,7 +29,7 @@ jobs:
git config --global fetch.parallel 32
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.DENOBOT_PAT }}
submodules: recursive
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ repository = "https://github.com/denoland/deno_core"

[workspace.dependencies]
# Local dependencies
deno_core = { version = "0.302.0", path = "./core" }
deno_ops = { version = "0.178.0", path = "./ops" }
serde_v8 = { version = "0.211.0", path = "./serde_v8" }
deno_core = { version = "0.303.0", path = "./core" }
deno_ops = { version = "0.179.0", path = "./ops" }
serde_v8 = { version = "0.212.0", path = "./serde_v8" }
deno_core_testing = { path = "./testing" }

v8 = { version = "0.102.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.302.0"
version = "0.303.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_ops"
version = "0.178.0"
version = "0.179.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion serde_v8/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "serde_v8"
version = "0.211.0"
version = "0.212.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 74349f1

Please sign in to comment.