diff --git a/.github/workflows/build-preview.yaml b/.github/workflows/build-preview.yaml index da726c74..340de3bb 100644 --- a/.github/workflows/build-preview.yaml +++ b/.github/workflows/build-preview.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest name: Build Preview steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -21,7 +21,7 @@ jobs: node-version: 22 - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -29,7 +29,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 62e31d7a..4ef78e10 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -29,7 +29,7 @@ jobs: node-version: 24 - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} @@ -64,7 +64,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Setup Node diff --git a/.github/workflows/deploy-v5.yaml b/.github/workflows/deploy-v5.yaml index 5f2fb2ea..655b2aa6 100644 --- a/.github/workflows/deploy-v5.yaml +++ b/.github/workflows/deploy-v5.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest name: Deploy v5 to Cloudflare Pages steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -26,7 +26,7 @@ jobs: node-version: 24 - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -34,7 +34,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} diff --git a/.github/workflows/docker-build-push.yaml b/.github/workflows/docker-build-push.yaml index dc346cb6..e5940790 100644 --- a/.github/workflows/docker-build-push.yaml +++ b/.github/workflows/docker-build-push.yaml @@ -21,7 +21,7 @@ jobs: echo "OWNER_LOWERCASE=${OWNER,,}" >> ${GITHUB_ENV} env: OWNER: "${{ github.repository_owner }}" - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - name: Inject slug/short variables