diff --git a/.github/workflows/frontend.deploy.chromatic.yml b/.github/workflows/frontend.deploy.chromatic.yml index 5436a4b..0bb3569 100644 --- a/.github/workflows/frontend.deploy.chromatic.yml +++ b/.github/workflows/frontend.deploy.chromatic.yml @@ -11,7 +11,7 @@ jobs: CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/frontend.test.build.code.yml b/.github/workflows/frontend.test.build.code.yml index 2f41264..1e5d92a 100644 --- a/.github/workflows/frontend.test.build.code.yml +++ b/.github/workflows/frontend.test.build.code.yml @@ -11,7 +11,7 @@ jobs: outputs: changes: ${{ steps.changes.outputs.frontend-test-build-code }} steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Check for frontend file changes uses: dorny/paths-filter@v2.11.1 @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Frontend | Build run: npm install && npm run build \ No newline at end of file diff --git a/.github/workflows/frontend.test.build.docs.yml b/.github/workflows/frontend.test.build.docs.yml index e73bd89..6f0a5bf 100644 --- a/.github/workflows/frontend.test.build.docs.yml +++ b/.github/workflows/frontend.test.build.docs.yml @@ -11,7 +11,7 @@ jobs: outputs: changes: ${{ steps.changes.outputs.frontend-test-build-docs }} steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Check for frontend file changes uses: dorny/paths-filter@v2.11.1 @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Frontend | Build Docs run: npm install && npm run docs:build \ No newline at end of file diff --git a/.github/workflows/frontend.test.build.storybook.yml b/.github/workflows/frontend.test.build.storybook.yml index c66fced..e92b68c 100644 --- a/.github/workflows/frontend.test.build.storybook.yml +++ b/.github/workflows/frontend.test.build.storybook.yml @@ -11,7 +11,7 @@ jobs: outputs: changes: ${{ steps.changes.outputs.frontend-test-build-storybook }} steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Check for frontend file changes uses: dorny/paths-filter@v2.11.1 @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Frontend | Build Storybook run: npm install && npm run storybook:build \ No newline at end of file diff --git a/.github/workflows/frontend.test.lint.code.yml b/.github/workflows/frontend.test.lint.code.yml index 81f5511..020593a 100644 --- a/.github/workflows/frontend.test.lint.code.yml +++ b/.github/workflows/frontend.test.lint.code.yml @@ -11,7 +11,7 @@ jobs: outputs: changes: ${{ steps.changes.outputs.frontend-test-lint-code }} steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Check for frontend file changes uses: dorny/paths-filter@v2.11.1 @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Frontend | Lint run: npm install && npm run test:lint \ No newline at end of file diff --git a/.github/workflows/frontend.test.unit.code.yml b/.github/workflows/frontend.test.unit.code.yml index b887032..528e398 100644 --- a/.github/workflows/frontend.test.unit.code.yml +++ b/.github/workflows/frontend.test.unit.code.yml @@ -11,7 +11,7 @@ jobs: outputs: changes: ${{ steps.changes.outputs.frontend-test-unit-code }} steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Check for frontend file changes uses: dorny/paths-filter@v2.11.1 @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Frontend | Unit run: npm install && npm run test:unit \ No newline at end of file