Skip to content

Commit dc57361

Browse files
committed
chore: upgraded GH action sonarsource/sonarqube-scan-action@v5.0.0
1 parent 2c4fb3a commit dc57361

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21-
- name: Setup Deno v2.2.2
21+
- name: Setup Deno v2.2.3
2222
uses: denoland/setup-deno@v1
2323
with:
24-
deno-version: v2.2.2
24+
deno-version: v2.2.3
2525

2626
- name: Setup LCOV
2727
run: sudo apt install -y lcov
@@ -36,7 +36,7 @@ jobs:
3636
run: deno task cover
3737

3838
- name: SonarCloud Scan
39-
uses: sonarsource/sonarqube-scan-action@v4.1.0
39+
uses: sonarsource/sonarqube-scan-action@v5.0.0
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/re-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
fetch-depth: 0
2222
ref: ${{ github.event.inputs.tag }}
2323

24-
- name: Setup Deno v2.2.2
24+
- name: Setup Deno v2.2.3
2525
uses: denoland/setup-deno@v1
2626
with:
27-
deno-version: v2.2.2
27+
deno-version: v2.2.3
2828

2929
- name: Verify formatting
3030
run: deno task fmt

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- name: Setup Deno v2.2.2
19+
- name: Setup Deno v2.2.3
2020
uses: denoland/setup-deno@v1
2121
with:
22-
deno-version: v2.2.2
22+
deno-version: v2.2.3
2323

2424
- name: Verify formatting
2525
run: deno task fmt

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM denoland/deno:alpine-2.2.2
1+
FROM denoland/deno:alpine-2.2.3
22

33
ENV APP_HOME=/home/app
44
WORKDIR $APP_HOME

deno.lock

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

src/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export { Application, Context, type Middleware, type Next, Router } from 'jsr:@o
22
export { Client } from 'jsr:@switcherapi/switcher-client-deno@2.1.0';
33
export { ValidatorFn, ValidatorMiddleware } from 'jsr:@trackerforce/validator4oak@1.2.0';
44
export { load } from 'jsr:@std/dotenv@0.225.3';
5-
export { bold, cyan, green } from 'jsr:@std/fmt@1.0.5/colors';
5+
export { bold, cyan, green } from 'jsr:@std/fmt@1.0.6/colors';

0 commit comments

Comments
 (0)