diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b0849274..3ad098b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,10 @@ jobs: runs-on: act-runner-user steps: - - uses: actions/checkout@v3 + - uses: https://github.com/actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: cache: yarn cache-dependency-path: | @@ -36,7 +36,7 @@ jobs: yarn build - name: Publish artifacts - uses: actions/upload-artifact@v4 + uses: https://github.com/actions/upload-artifact@v4 with: name: dist path: | @@ -47,10 +47,10 @@ jobs: runs-on: act-runner-user steps: - - uses: actions/checkout@v3 + - uses: https://github.com/actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: cache: yarn cache-dependency-path: | @@ -72,10 +72,10 @@ jobs: runs-on: act-runner-user steps: - - uses: actions/checkout@v3 + - uses: https://github.com/actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: cache: yarn cache-dependency-path: | @@ -99,10 +99,10 @@ jobs: runs-on: act-runner-user steps: - - uses: actions/checkout@v3 + - uses: https://github.com/actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: cache: yarn cache-dependency-path: | diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 36841d6a..7eab927e 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -17,10 +17,10 @@ jobs: containers: [1, 2] # Uses 2 parallel instances steps: - - uses: actions/checkout@v3 + - uses: https://github.com/actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v3 + uses: https://github.com/actions/setup-node@v3 with: cache: yarn cache-dependency-path: | @@ -35,7 +35,7 @@ jobs: yarn install --frozen-lockfile - name: Run Cypress Tests - uses: cypress-io/github-action@v6 + uses: https://github.com/cypress-io/github-action@v6 with: start: yarn dev wait-on: 'http://localhost:8080' diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml index df227e80..f55abaab 100644 --- a/.github/workflows/pr-title.yml +++ b/.github/workflows/pr-title.yml @@ -12,11 +12,11 @@ jobs: name: Validate PR title runs-on: act-runner-user steps: - - uses: amannn/action-semantic-pull-request@v5 + - uses: https://github.com/amannn/action-semantic-pull-request@v5 env: GITHUB_TOKEN: ${{ secrets.PR_TITLE_TOKEN }} - - uses: marocchino/sticky-pull-request-comment@v2 + - uses: https://github.com/marocchino/sticky-pull-request-comment@v2 # When the previous steps fails, the workflow would stop. By adding this # condition you can continue the execution with the populated error message. if: always() && (steps.lint_pr_title.outputs.error_message != null) @@ -35,7 +35,7 @@ jobs: # Delete a previous comment when the issue has been resolved - if: ${{ steps.lint_pr_title.outputs.error_message == null }} - uses: marocchino/sticky-pull-request-comment@v2 + uses: https://github.com/marocchino/sticky-pull-request-comment@v2 with: header: pr-title-lint-error delete: true