From 73ade15fd8639f19a5ea89bfe90a4cad1c0d3a8a Mon Sep 17 00:00:00 2001 From: "tembo[bot]" <208362400+tembo[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:37:03 +0000 Subject: [PATCH] chore(ci): upgrade GitHub Actions checkout to v6 in workflows Co-authored-by: Jean <9619050+JeanMeijer@users.noreply.github.com> --- .github/workflows/check-format.yaml | 4 ++-- .github/workflows/check-types.yaml | 4 ++-- .github/workflows/lint.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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