From e8853e4765275b267a2daedbc9d6f97779ede47d Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Sat, 9 Dec 2023 14:57:08 +0100 Subject: [PATCH 1/3] ci: Updated checkout action version --- .github/workflows/pr.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index edeb6369..6ea060d0 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,7 +12,7 @@ jobs: prepare-env: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -41,7 +41,7 @@ jobs: with: node-version: 20.x - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a4fad8b..07482225 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: prepare-env: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -34,7 +34,7 @@ jobs: needs: [ prepare-env ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 From 578efe53006af94756e261bfa613dbf5eae35d94 Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Sat, 9 Dec 2023 14:59:19 +0100 Subject: [PATCH 2/3] ci: Added dependabot.yml --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..06a85ca1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 2f753b84f22451eb23e507607d26a29484a10f41 Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Sat, 9 Dec 2023 15:50:03 +0100 Subject: [PATCH 3/3] fix(gcp-functions): Fixed schema still having `gen` default set to `1` --- packages/gcp-functions/src/executors/deploy/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gcp-functions/src/executors/deploy/schema.json b/packages/gcp-functions/src/executors/deploy/schema.json index ec2abc4b..530930cb 100644 --- a/packages/gcp-functions/src/executors/deploy/schema.json +++ b/packages/gcp-functions/src/executors/deploy/schema.json @@ -96,7 +96,7 @@ }, "gen": { "type": "number", - "default": 1 + "default": 2 }, "cpu": { "type": "number",