From 3a4d4895e5f7694fcca3e38e6881c099818dd27f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Sep 2025 20:37:36 +0000 Subject: [PATCH 1/2] Bump sonarsource/sonarqube-scan-action in /.github/workflows Bumps [sonarsource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) from 5.3.1 to 6.0.0. - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v5.3.1...v6.0.0) --- updated-dependencies: - dependency-name: sonarsource/sonarqube-scan-action dependency-version: 6.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/master.yml | 2 +- .github/workflows/sonar.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index e9b3988..45dba2b 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -35,7 +35,7 @@ jobs: run: deno task cover - name: SonarCloud Scan - uses: sonarsource/sonarqube-scan-action@v5.3.1 + uses: sonarsource/sonarqube-scan-action@v6.0.0 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} if: env.SONAR_TOKEN != '' diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index f5c946b..0ec145f 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -51,7 +51,7 @@ jobs: run: deno task cover - name: SonarCloud Scan - uses: sonarsource/sonarqube-scan-action@v5.3.1 + uses: sonarsource/sonarqube-scan-action@v6.0.0 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} if: env.SONAR_TOKEN != '' From 7d8ff7511e5bb893b720c548d08f7754624b872e Mon Sep 17 00:00:00 2001 From: petruki <31597636+petruki@users.noreply.github.com> Date: Sat, 27 Sep 2025 13:41:53 -0700 Subject: [PATCH 2/2] Bump Deno to 2.5.2 --- .devcontainer/Dockerfile | 2 +- .github/workflows/master.yml | 10 +++++----- .github/workflows/re-release.yml | 8 ++++---- .github/workflows/release.yml | 8 ++++---- .github/workflows/sonar.yml | 6 +++--- Dockerfile | 2 +- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b4545dd..9066613 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:2.4.5 +FROM denoland/deno:2.5.2 # Install tools RUN apt-get update && \ diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 45dba2b..e71816c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -13,14 +13,14 @@ jobs: steps: - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - - name: Setup Deno v2.4.5 + - name: Setup Deno v2.5.2 uses: denoland/setup-deno@v2 with: - deno-version: v2.4.5 + deno-version: v2.5.2 - name: Setup LCOV run: sudo apt install -y lcov @@ -77,12 +77,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: 'master' - name: Checkout Kustomize - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.ARGOCD_PAT }} repository: switcherapi/switcher-deployment diff --git a/.github/workflows/re-release.yml b/.github/workflows/re-release.yml index 3fa983b..572a777 100644 --- a/.github/workflows/re-release.yml +++ b/.github/workflows/re-release.yml @@ -16,15 +16,15 @@ jobs: steps: - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 ref: ${{ github.event.inputs.tag }} - - name: Setup Deno v2.4.5 + - name: Setup Deno v2.5.2 uses: denoland/setup-deno@v2 with: - deno-version: v2.4.5 + deno-version: v2.5.2 - name: Verify formatting run: deno task fmt @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 ref: ${{ github.event.inputs.tag }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4b06950..fa4e165 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,14 +12,14 @@ jobs: steps: - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - - name: Setup Deno v2.4.5 + - name: Setup Deno v2.5.2 uses: denoland/setup-deno@v2 with: - deno-version: v2.4.5 + deno-version: v2.5.2 - name: Verify formatting run: deno task fmt @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Docker meta id: meta diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 0ec145f..faae352 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -28,15 +28,15 @@ jobs: core.setOutput('base_ref', pr.data.base.ref); core.setOutput('head_sha', pr.data.head.sha); - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ steps.pr.outputs.head_sha }} fetch-depth: 0 - - name: Setup Deno v2.4.5 + - name: Setup Deno v2.5.2 uses: denoland/setup-deno@v2 with: - deno-version: v2.4.5 + deno-version: v2.5.2 - name: Setup LCOV run: sudo apt install -y lcov diff --git a/Dockerfile b/Dockerfile index 5ac7d89..328c7ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:alpine-2.4.5 +FROM denoland/deno:alpine-2.5.2 ENV APP_HOME=/home/app WORKDIR $APP_HOME