diff options
| author | StepSecurity Bot <[email protected]> | 2023-07-13 12:19:21 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-13 21:19:21 +0200 |
| commit | 348c0da57b22a309f496b3933ac51018e315a07a (patch) | |
| tree | 0349b3952a3d1abc10a2d865e37656faeb3a127b /.github/workflows | |
| parent | 82f1fd30d4923d63cf0bfc845197b4c631b57146 (diff) | |
| download | faker-348c0da57b22a309f496b3933ac51018e315a07a.tar.xz faker-348c0da57b22a309f496b3933ac51018e315a07a.zip | |
chore: pin workflows dependencies (#2208)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 44 | ||||
| -rw-r--r-- | .github/workflows/comment-issue.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/pr.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/semantic-pull-request.yml | 2 |
4 files changed, 29 insertions, 29 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 593c17f0..bbfb49db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,23 +35,23 @@ jobs: name: 'Build & Unit Test: node-${{ matrix.node_version }}, ${{ matrix.os }}' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: # Required for docs/versions tests fetch-depth: 0 - name: Install pnpm (node 14, pnpm 7) if: matrix.node_version == 14 - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 with: version: 7 - name: Install pnpm if: matrix.node_version != 14 - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to ${{ matrix.node_version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ matrix.node_version }} cache: 'pnpm' @@ -90,16 +90,16 @@ jobs: run: date - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: # Required for docs/versions tests fetch-depth: 0 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to ${{ matrix.node_version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: ${{ matrix.node_version }} cache: 'pnpm' @@ -122,10 +122,10 @@ jobs: name: 'E2E Doc Test: node-18, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Install deps run: pnpm install @@ -143,15 +143,15 @@ jobs: name: 'Lint: node-18, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: 18 cache: 'pnpm' @@ -173,15 +173,15 @@ jobs: name: 'TS-Check Scripts: node-18, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: 18 cache: 'pnpm' @@ -200,15 +200,15 @@ jobs: name: 'TS-Check Tests: node-18, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: 18 cache: 'pnpm' @@ -227,15 +227,15 @@ jobs: name: 'Codecov: node-18, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: 18 cache: 'pnpm' @@ -252,7 +252,7 @@ jobs: run: pnpm vitest run --coverage - name: Upload coverage to Codecov - uses: codecov/[email protected] + uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/comment-issue.yml b/.github/workflows/comment-issue.yml index c9d33ce4..4bf1bc2f 100644 --- a/.github/workflows/comment-issue.yml +++ b/.github/workflows/comment-issue.yml @@ -13,7 +13,7 @@ jobs: issues: write steps: - name: Add Comment For User Interest - uses: actions/github-script@v6 + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 with: script: | github.rest.issues.createComment({ @@ -49,7 +49,7 @@ jobs: }) - name: React to Issue - uses: actions/github-script@v6 + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 with: script: | github.rest.reactions.createForIssue({ diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 480298b7..73b1ccdb 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -15,15 +15,15 @@ jobs: pull-requests: write steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/[email protected] + uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # v2.2.4 - name: Set node version to 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: 18 cache: 'pnpm' @@ -53,7 +53,7 @@ jobs: run: pnpm exec tsc .github/workflows/commentCodeGeneration.ts --outDir .github/workflows - name: Comment - uses: actions/github-script@v6 + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 with: script: | const script = require('${{ github.workspace }}/.github/workflows/commentCodeGeneration.js') diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index 75b40cde..bf8f8158 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -20,7 +20,7 @@ jobs: name: Semantic Pull Request steps: - name: Validate PR title - uses: amannn/action-semantic-pull-request@v5 + uses: amannn/action-semantic-pull-request@c3cd5d1ea3580753008872425915e343e351ab54 # v5.2.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: |
