diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index a4c8f6a..7b8fac6 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 79fe056..3145bae 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -26,7 +26,7 @@ jobs: actions: read # Required for Claude to read CI results on PRs steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6045981..97b0693 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up JDK - uses: coursier/setup-action@v1 + uses: coursier/setup-action@v3 with: jvm: temurin:25 @@ -35,7 +35,7 @@ jobs: bun-version: latest - name: Cache Coursier - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/coursier @@ -45,7 +45,7 @@ jobs: ${{ runner.os }}-coursier- - name: Cache Mill - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.mill key: ${{ runner.os }}-mill-${{ hashFiles('build.mill') }} @@ -101,7 +101,7 @@ jobs: MILL_PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} - name: Create GitHub Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v3 with: body: ${{ steps.version.outputs.body }} generate_release_notes: ${{ steps.version.outputs.has_notes != 'true' }}