Skip to content

Commit 5a87b77

Browse files
committed
build: update + cleanup build deps
1 parent 8e77ec6 commit 5a87b77

File tree

7 files changed

+144
-273
lines changed

7 files changed

+144
-273
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 15 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
skip_coveralls:
10-
description: "Skip coveralls"
10+
description: "Skip Coveralls"
1111
type: boolean
1212
default: false
1313
skip_gas:
@@ -18,8 +18,8 @@ on:
1818
description: "Skip release"
1919
type: boolean
2020
default: true
21-
skip_sonarcloud:
22-
description: "Skip sonarcloud"
21+
skip_sonarqube:
22+
description: "Skip SonarQube"
2323
type: boolean
2424
default: false
2525
skip_tests:
@@ -82,10 +82,10 @@ jobs:
8282
if: ${{ !github.event.inputs.skip_coveralls }}
8383
name: Coveralls
8484
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2
85-
- id: sonarcloud
86-
if: ${{ !github.event.inputs.skip_sonarcloud }}
87-
name: SonarCloud Scan
88-
uses: SonarSource/sonarqube-scan-action@bfd4e558cda28cda6b5defafb9232d191be8c203 # v4
85+
- id: sonarqube
86+
if: ${{ !github.event.inputs.skip_sonarqube }}
87+
name: SonarQube Scan
88+
uses: SonarSource/sonarqube-scan-action@0303d6b62e310685c0e34d0b9cde218036885c4d # v5
8989
env:
9090
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9191
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ jobs:
5757
run: npm run ci:docs
5858
- name: Deploy Pages
5959
id: deploy-pages
60-
uses: JamesIves/github-pages-deploy-action@15de0f09300eea763baee31dff6c6184995c5f6a # v4
60+
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4
6161
with:
6262
folder: docs/build

.github/workflows/pr.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88
workflow_dispatch:
99
inputs:
1010
skip_coveralls:
11-
description: "Skip coveralls"
11+
description: "Skip Coveralls"
1212
type: boolean
1313
default: false
14-
skip_sonarcloud:
15-
description: "Skip sonarcloud"
14+
skip_sonarqube:
15+
description: "Skip SonarQube"
1616
type: boolean
1717
default: false
1818
skip_tests:
@@ -54,10 +54,10 @@ jobs:
5454
if: ${{ !github.event.inputs.skip_coveralls }}
5555
name: Coveralls
5656
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2
57-
- id: sonarcloud
58-
if: ${{ env.SONAR_TOKEN && !github.event.inputs.skip_sonarcloud }}
59-
name: SonarCloud Scan
60-
uses: sonarsource/sonarcloud-github-action@02ef91109b2d589e757aefcfb2854c2783fd7b19 # v4
57+
- id: sonarqube
58+
if: ${{ !github.event.inputs.skip_sonarqube }}
59+
name: SonarQube Scan
60+
uses: SonarSource/sonarqube-scan-action@0303d6b62e310685c0e34d0b9cde218036885c4d # v5
6161
env:
6262
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6363
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

devbox.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/jetpack-io/devbox/0.10.3/.schema/devbox.schema.json",
33
"packages": [
4-
"gojq@0",
5-
"gh@2",
6-
"gettext@0",
7-
"gomplate@3",
8-
"google-clasp@2",
9-
"nodejs@22",
10-
"renovate@latest",
11-
"antlr@4",
12-
"qpdf@11",
4+
5+
6+
7+
8+
9+
10+
1311
"wkhtmltopdf-bin@0"
1412
],
1513
"shell": {

0 commit comments

Comments
 (0)