diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f1ecbbbbe..15b8be419b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 15 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.2 - name: Cache sbt uses: actions/cache@v4 with: @@ -77,7 +77,7 @@ jobs: name: Build ${{matrix.scala_short_dot}} - ${{matrix.module}} steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.2 - name: Cache sbt uses: actions/cache@v4 with: @@ -108,7 +108,7 @@ jobs: CI_RELEASE: publishSigned # By default, sbt-ci-release uses the `+publishSigned` which is publishing for all the Scala versions configured, which is not what we want CI_SNAPSHOT_RELEASE: publish # By default, sbt-ci-release uses the `+publish` which is publishing for all the Scala versions configured, which is not what we want steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.2 - name: Setup Java uses: actions/setup-java@v4.3.0 with: diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index e04754b0d8..41f07ecfce 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -18,7 +18,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 with: fetch-depth: '0' - name: Setup Scala @@ -39,7 +39,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 with: fetch-depth: '0' - name: Setup Scala @@ -63,7 +63,7 @@ jobs: if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} steps: - name: Git Checkout - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 with: ref: ${{ github.head_ref }} fetch-depth: '0'