diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d6f5fd0..75bb898 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build Check uses: ./.github/actions/build @@ -31,7 +31,7 @@ jobs: mv ./out/* /tmp/out - name: Checkout gh-pages - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: gh-pages @@ -68,4 +68,4 @@ jobs: fi - name: Checkout main branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index be8b529..c091492 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build Check uses: ./.github/actions/build @@ -33,7 +33,7 @@ jobs: mv ./out/* /tmp/out - name: Checkout gh-pages - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: gh-pages @@ -60,14 +60,14 @@ jobs: }) - name: Checkout pr branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 cleanup: if: github.event.action == 'closed' runs-on: ubuntu-latest steps: - name: Checkout gh-pages - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: gh-pages