From f06500abbdef5370ca5b7be73a102a317d4127dd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2024 01:23:23 +0000 Subject: [PATCH] chore(deps): update github actions --- .github/workflows/auto-deprecate.yml | 2 +- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/continuous-delivery.yml | 2 +- .github/workflows/continuous-integration.yml | 12 ++++++------ .github/workflows/deprecate-on-merge.yml | 2 +- .github/workflows/documentation.yml | 8 ++++---- .github/workflows/labelssync.yml | 2 +- .github/workflows/publish.yml | 2 +- 8 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/auto-deprecate.yml b/.github/workflows/auto-deprecate.yml index 1324acd4..f92c4839 100644 --- a/.github/workflows/auto-deprecate.yml +++ b/.github/workflows/auto-deprecate.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Use Node.js v20 uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index aa137e29..8e3f6d47 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -16,13 +16,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Initialize CodeQL - uses: github/codeql-action/init@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3 + uses: github/codeql-action/init@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3 - name: Auto Build - uses: github/codeql-action/autobuild@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3 + uses: github/codeql-action/autobuild@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3 + uses: github/codeql-action/analyze@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3 diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index de3d9e4c..62e83d1b 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 with: fetch-depth: 0 ref: ${{ github.event.inputs.branch || 'main' }} diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 1d7a8982..ab275a43 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Add ESLint Problem Matcher run: echo "::add-matcher::.github/problemMatchers/eslint.json" - name: Use Node.js v20 @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Add TypeScript Problem Matcher run: echo "::add-matcher::.github/problemMatchers/tsc.json" - name: Use Node.js v20 @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Use Node.js v20 uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 with: @@ -68,7 +68,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Use Node.js v20 uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 with: @@ -80,7 +80,7 @@ jobs: - name: Run tests run: yarn test:coverage - name: Store Code Coverage Report - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: coverage path: coverage/ @@ -91,7 +91,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 with: fetch-depth: 2 - name: Download Coverage report diff --git a/.github/workflows/deprecate-on-merge.yml b/.github/workflows/deprecate-on-merge.yml index 028ff4fd..db29e141 100644 --- a/.github/workflows/deprecate-on-merge.yml +++ b/.github/workflows/deprecate-on-merge.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Use Node.js v20 uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 with: diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index ee5da6ce..92bd435f 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -24,7 +24,7 @@ jobs: SHA: ${{ steps.env.outputs.SHA }} steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 with: ref: ${{ github.event.inputs.ref || '' }} - name: Use Node.js v20 @@ -38,7 +38,7 @@ jobs: - name: Build Documentation run: yarn docs - name: Upload Documentation Artifacts - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 with: name: docs path: docs/api.json @@ -59,7 +59,7 @@ jobs: SHA: ${{ needs.build.outputs.SHA }} steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 - name: Use Node.js v20 uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4 with: @@ -74,7 +74,7 @@ jobs: name: docs path: docs - name: Checkout Documentation Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 with: repository: 'RealShadowNova/docs' token: ${{ secrets.NOVA_TOKEN }} diff --git a/.github/workflows/labelssync.yml b/.github/workflows/labelssync.yml index cea10943..197122c3 100644 --- a/.github/workflows/labelssync.yml +++ b/.github/workflows/labelssync.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 with: repository: 'RealShadowNova/.github' - name: Run Label Sync diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ae37a4f8..2c15a294 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout Project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 with: fetch-depth: 0 ref: main