Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:2.4.5
FROM denoland/deno:2.5.2

# Install tools
RUN apt-get update && \
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 != ''
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/re-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Docker meta
id: meta
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 != ''
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down