Skip to content

Commit

Permalink
Merge branch 'main' into fix-eventsource-truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Mar 24, 2024
2 parents f05cad8 + ae52b49 commit 8484add
Show file tree
Hide file tree
Showing 117 changed files with 2,538 additions and 1,692 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.generate.ts
Expand Up @@ -203,7 +203,7 @@ const installDenoStep = {

const authenticateWithGoogleCloud = {
name: "Authenticate with Google Cloud",
uses: "google-github-actions/auth@v1",
uses: "google-github-actions/auth@v2",
with: {
"project_id": "denoland",
"credentials_json": "${{ secrets.GCP_SA_KEY }}",
Expand Down Expand Up @@ -510,7 +510,7 @@ const ci = {
"(github.ref == 'refs/heads/main' ||",
"startsWith(github.ref, 'refs/tags/'))",
].join("\n"),
uses: "google-github-actions/setup-gcloud@v1",
uses: "google-github-actions/setup-gcloud@v2",
with: {
project_id: "denoland",
},
Expand All @@ -525,7 +525,7 @@ const ci = {
"(github.ref == 'refs/heads/main' ||",
"startsWith(github.ref, 'refs/tags/'))",
].join("\n"),
uses: "google-github-actions/setup-gcloud@v1",
uses: "google-github-actions/setup-gcloud@v2",
env: {
CLOUDSDK_PYTHON: "${{env.pythonLocation}}\\python.exe",
},
Expand Down Expand Up @@ -1061,7 +1061,7 @@ const ci = {
authenticateWithGoogleCloud,
{
name: "Setup gcloud",
uses: "google-github-actions/setup-gcloud@v1",
uses: "google-github-actions/setup-gcloud@v2",
with: {
project_id: "denoland",
},
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -209,7 +209,7 @@ jobs:
(github.ref == 'refs/heads/main' ||
startsWith(github.ref, 'refs/tags/')))
name: Authenticate with Google Cloud
uses: google-github-actions/auth@v1
uses: google-github-actions/auth@v2
with:
project_id: denoland
credentials_json: '${{ secrets.GCP_SA_KEY }}'
Expand All @@ -223,7 +223,7 @@ jobs:
github.repository == 'denoland/deno' &&
(github.ref == 'refs/heads/main' ||
startsWith(github.ref, 'refs/tags/')))
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2
with:
project_id: denoland
- name: Setup gcloud (windows)
Expand All @@ -234,7 +234,7 @@ jobs:
github.repository == 'denoland/deno' &&
(github.ref == 'refs/heads/main' ||
startsWith(github.ref, 'refs/tags/')))
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2
env:
CLOUDSDK_PYTHON: '${{env.pythonLocation}}\python.exe'
with:
Expand Down Expand Up @@ -672,14 +672,14 @@ jobs:
if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'
steps:
- name: Authenticate with Google Cloud
uses: google-github-actions/auth@v1
uses: google-github-actions/auth@v2
with:
project_id: denoland
credentials_json: '${{ secrets.GCP_SA_KEY }}'
export_environment_variables: true
create_credentials_file: true
- name: Setup gcloud
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2
with:
project_id: denoland
- name: Upload canary version file to dl.deno.land
Expand Down
52 changes: 32 additions & 20 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -44,7 +44,7 @@ repository = "https://github.com/denoland/deno"

[workspace.dependencies]
deno_ast = { version = "0.34.1", features = ["transpiling"] }
deno_core = { version = "0.270.0", features = ["lazy_eval_snapshot"] }
deno_core = { version = "0.272.0" }

deno_bench_util = { version = "0.136.0", path = "./bench_util" }
deno_lockfile = "0.19.0"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Expand Up @@ -69,12 +69,12 @@ deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"]
deno_doc = { version = "=0.113.1", features = ["html"] }
deno_emit = "=0.38.2"
deno_graph = { version = "=0.69.9", features = ["tokio_executor"] }
deno_lint = { version = "=0.57.1", features = ["docs"] }
deno_lint = { version = "=0.58.0", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "=0.17.0"
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_semver = "=0.5.4"
deno_task_shell = "=0.14.3"
deno_task_shell = "=0.15.0"
deno_terminal.workspace = true
eszip = "=0.64.2"
napi_sym.workspace = true
Expand Down

0 comments on commit 8484add

Please sign in to comment.