Skip to content

Commit ade2dfd

Browse files
authored
Bump oak@17.1.6, Deno v2.4.5, sonar action 5.3.1 (#49)
1 parent 2f686e4 commit ade2dfd

File tree

9 files changed

+51
-51
lines changed

9 files changed

+51
-51
lines changed

.devcontainer/Dockerfile

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

33
# Install tools
44
RUN apt-get update && \

.github/workflows/master.yml

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

20-
- name: Setup Deno v2.4.2
20+
- name: Setup Deno v2.4.5
2121
uses: denoland/setup-deno@v2
2222
with:
23-
deno-version: v2.4.2
23+
deno-version: v2.4.5
2424

2525
- name: Setup LCOV
2626
run: sudo apt install -y lcov
@@ -35,7 +35,7 @@ jobs:
3535
run: deno task cover
3636

3737
- name: SonarCloud Scan
38-
uses: sonarsource/sonarqube-scan-action@v5.2.0
38+
uses: sonarsource/sonarqube-scan-action@v5.3.1
3939
env:
4040
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4141
if: env.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.4.2
24+
- name: Setup Deno v2.4.5
2525
uses: denoland/setup-deno@v2
2626
with:
27-
deno-version: v2.4.2
27+
deno-version: v2.4.5
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.4.2
19+
- name: Setup Deno v2.4.5
2020
uses: denoland/setup-deno@v2
2121
with:
22-
deno-version: v2.4.2
22+
deno-version: v2.4.5
2323

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

.github/workflows/sonar.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
ref: ${{ steps.pr.outputs.head_sha }}
3434
fetch-depth: 0
3535

36-
- name: Setup Deno v2.4.2
36+
- name: Setup Deno v2.4.5
3737
uses: denoland/setup-deno@v2
3838
with:
39-
deno-version: v2.4.2
39+
deno-version: v2.4.5
4040

4141
- name: Setup LCOV
4242
run: sudo apt install -y lcov
@@ -51,7 +51,7 @@ jobs:
5151
run: deno task cover
5252

5353
- name: SonarCloud Scan
54-
uses: sonarsource/sonarqube-scan-action@v5.2.0
54+
uses: sonarsource/sonarqube-scan-action@v5.3.1
5555
env:
5656
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
5757
if: env.SONAR_TOKEN != ''

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.4.2
1+
FROM denoland/deno:alpine-2.4.5
22

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

deno.lock

Lines changed: 36 additions & 36 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
@@ -1,4 +1,4 @@
1-
export { Application, Context, type Middleware, type Next, Router } from 'jsr:@oak/oak@17.1.5';
1+
export { Application, Context, type Middleware, type Next, Router } from 'jsr:@oak/oak@17.1.6';
22
export { Client } from 'jsr:@switcherapi/switcher-client-deno@2.3.1';
33
export { ValidatorFn, ValidatorMiddleware } from 'jsr:@trackerforce/validator4oak@1.3.0';
44
export { load } from 'jsr:@std/dotenv@0.225.5';

tests/deps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { type Middleware, testing } from 'jsr:@oak/oak@17.1.5';
1+
export { type Middleware, testing } from 'jsr:@oak/oak@17.1.6';
22
export { Client, StrategiesType } from 'jsr:@switcherapi/switcher-client-deno@2.3.1';
33
export { superoak } from 'https://deno.land/x/superoak@5.0.0/mod.ts';
4-
export { assert, assertEquals, assertFalse, assertObjectMatch } from 'jsr:@std/assert@1.0.13';
4+
export { assert, assertEquals, assertFalse, assertObjectMatch } from 'jsr:@std/assert@1.0.14';

0 commit comments

Comments
 (0)