diff --git a/.github/workflows/check-format.yaml b/.github/workflows/check-format.yaml index 0d1481e0..1edcb6fb 100644 --- a/.github/workflows/check-format.yaml +++ b/.github/workflows/check-format.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Bun uses: oven-sh/setup-bun@v2 @@ -24,4 +24,4 @@ jobs: run: bun install -D --frozen-lockfile - name: Run Prettier to check formatting - run: bun run prettier --check **/*.{ts,tsx,css,md} \ No newline at end of file + run: bun run prettier --check **/*.{ts,tsx,css,md} diff --git a/.github/workflows/check-types.yaml b/.github/workflows/check-types.yaml index ab605de7..917a9f00 100644 --- a/.github/workflows/check-types.yaml +++ b/.github/workflows/check-types.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Bun uses: oven-sh/setup-bun@v2 @@ -24,4 +24,4 @@ jobs: run: bun install -D --frozen-lockfile - name: Run Prettier to check formatting - run: bun run type-check \ No newline at end of file + run: bun run type-check diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4755d85f..73f1f18a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Bun uses: oven-sh/setup-bun@v2 @@ -24,4 +24,4 @@ jobs: run: bun install -D --frozen-lockfile - name: Run ESLint - run: bun run lint \ No newline at end of file + run: bun run lint