diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7e602d92..87adadae 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -16,7 +16,7 @@ jobs: steps: # We need the full repo to avoid this issue # https://github.com/actions/checkout/issues/23 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d9b73ef4..db2778c9 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -17,7 +17,7 @@ jobs: id-token: write steps: # retrieve your distributions here - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Python diff --git a/.github/workflows/test-build-push.yml b/.github/workflows/test-build-push.yml index 39c1f68f..d2ad6d02 100644 --- a/.github/workflows/test-build-push.yml +++ b/.github/workflows/test-build-push.yml @@ -31,7 +31,7 @@ jobs: shell: bash -l {0} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup environment uses: mamba-org/setup-micromamba@v3 with: @@ -76,7 +76,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Python 3.11 @@ -113,14 +113,14 @@ jobs: - name: Add develop tag if: github.ref == 'refs/heads/main' - uses: akhilerm/tag-push-action@v2.2.0 + uses: akhilerm/tag-push-action@v2.3.0 with: src: ghcr.io/${{ github.repository }}:${{ env.DOLPHIN_VERSION }} dst: ghcr.io/${{ github.repository }}:develop - name: Add latest tag if: startsWith(github.ref, 'refs/tags/v') - uses: akhilerm/tag-push-action@v2.2.0 + uses: akhilerm/tag-push-action@v2.3.0 with: src: ghcr.io/${{ github.repository }}:${{ env.DOLPHIN_VERSION }} dst: ghcr.io/${{ github.repository }}:latest