diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 68ddf55..3eda896 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout website - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Read the Skill registry and emit a sequence of "owner/repo,dir" lines # for the next step to clone. Driven by data/skills.yaml so adding a @@ -84,7 +84,7 @@ jobs: run: bun run build - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: ./dist @@ -97,4 +97,4 @@ jobs: steps: - name: Deploy id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f9bab14..f1a46d6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,7 +11,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Bun uses: oven-sh/setup-bun@v2