Skip to content

Commit

Permalink
deps: pin dependencies (#107)
Browse files Browse the repository at this point in the history
| datasource | package                          | from    | to      |
| ---------- | -------------------------------- | ------- | ------- |
| npm        | @actions/core                    | 1.10.1  | 1.10.1  |
| npm        | @actions/github                  | 6.0.0   | 6.0.0   |
| npm        | @octokit/openapi-types           | 22.2.0  | 22.2.0  |
| npm        | @types/jest                      | 29.5.12 | 29.5.12 |
| npm        | @types/node                      | 20.14.2 | 20.14.2 |
| npm        | @typescript-eslint/eslint-plugin | 7.13.0  | 7.13.0  |
| npm        | @typescript-eslint/parser        | 7.13.0  | 7.13.0  |
| npm        | @vercel/ncc                      | 0.38.1  | 0.38.1  |
| npm        | eslint                           | 8.57.0  | 8.57.0  |
| npm        | eslint-plugin-github             | 5.0.1   | 5.0.1   |
| npm        | eslint-plugin-jest               | 28.6.0  | 28.6.0  |
| npm        | eslint-plugin-jsonc              | 2.16.0  | 2.16.0  |
| npm        | eslint-plugin-prettier           | 5.1.3   | 5.1.3   |
| npm        | jest                             | 29.7.0  | 29.7.0  |
| npm        | make-coverage-badge              | 1.2.0   | 1.2.0   |
| npm        | prettier                         | 3.3.2   | 3.3.2   |
| npm        | prettier-eslint                  | 16.3.0  | 16.3.0  |
| npm        | ts-jest                          | 29.1.5  | 29.1.5  |
| npm        | typescript                       | 5.4.5   | 5.4.5   |
| npm        | valibot                          | 0.32.0  | 0.32.0  |

Co-authored-by: mazi-renovate[bot] <161091290+mazi-renovate[bot]@users.noreply.github.com>
  • Loading branch information
mazi-renovate[bot] authored Jul 3, 2024
1 parent 7ab52ee commit ef6ea11
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 818 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/[email protected]
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0

- name: Setup Node.js
id: setup-node
uses: actions/[email protected]
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
cache: pnpm
- name: Install Dependencies
Expand All @@ -59,7 +59,7 @@ jobs:
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/[email protected]
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: dist
path: dist/
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/[email protected]
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0

- name: Setup Node.js
id: setup-node
uses: actions/[email protected]
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
cache: pnpm

Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/[email protected]
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Test Local Action
id: test-action
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/[email protected]
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/[email protected]
uses: github/codeql-action/init@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
with:
languages: ${{ matrix.language }}
source-root: src

- name: Autobuild
id: autobuild
uses: github/codeql-action/[email protected]
uses: github/codeql-action/autobuild@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11

- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/[email protected]
uses: github/codeql-action/analyze@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
6 changes: 3 additions & 3 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/[email protected]
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0

Expand All @@ -28,7 +28,7 @@ jobs:

- name: Setup Node.js
id: setup-node
uses: actions/[email protected]
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
cache: pnpm

Expand All @@ -38,7 +38,7 @@ jobs:

- name: Lint Codebase
id: super-linter
uses: super-linter/super-linter/[email protected]
uses: super-linter/super-linter/slim@88ea3923a7e1f89dd485d079f6eb5f5e8f937589 # v6.6.0
env:
DEFAULT_BRANCH: main
FILTER_REGEX_INCLUDE: src/**/*
Expand Down
Loading

0 comments on commit ef6ea11

Please sign in to comment.