Skip to content

Commit

Permalink
fix: Bump dependencies to latest ts-proto upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdotb committed Jul 28, 2022
2 parents 2ac9ea0 + bfa216f commit 3762c9f
Show file tree
Hide file tree
Showing 10 changed files with 927 additions and 1,081 deletions.
42 changes: 42 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#################################
# GitHub Dependabot Config info #
#################################

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for NPM
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for Docker
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for Golang
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for Terraform
- package-ecosystem: "terraform"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for Python
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
26 changes: 0 additions & 26 deletions .github/scripts/ensure_set_euox_pipefail.sh

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.x'
# cache: 'npm'
# cache-dependency-path: '**/package-lock.json'
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: "Clean install dependencies"
run: npm ci

- name: "Run npm build"
run: npm run build

- name: "Run npm test"
run: npm run test
# - name: "Run npm test"
# run: npm run test
40 changes: 40 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: "CodeQL"
on:
push:
branches:
- main
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash


jobs:

codeql-analysis:
name: "CodeQL Analysis"
runs-on: ubuntu-latest
permissions:
security-events: write

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Initialise CodeQL
uses: github/codeql-action/init@v2
with:
languages: 'javascript'
queries: security-and-quality

- name: Build
run: |
npm ci
npm run build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
10 changes: 0 additions & 10 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,6 @@ defaults:


jobs:

sh-euox-pipefail-check:
name: "Shell pipefail check"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run 'set -euox pipefail' check
run: bash ./.github/scripts/ensure_set_euox_pipefail.sh

md-link-check:
name: "Broken Markdown links"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: "Obtain Github App token"
id: app-token
Expand Down
3 changes: 2 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
@cheqd:registry=https://npm.pkg.github.com
@cheqd:registry=https://registry.npmjs.org/
access=public
4 changes: 2 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
"changelogTitle": "# Changelog"
}
],
"@semantic-release/npm",
[ "@semantic-release/git",
{
"assets": [ "package.json", "package-lock.json", "CHANGELOG.md" ],
"assets": [ "package.json", "CHANGELOG.md" ],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
Loading

0 comments on commit 3762c9f

Please sign in to comment.