diff --git a/.github/workflows/cd-slim.yml b/.github/workflows/cd-slim.yml index a2ce7d4..77335e8 100644 --- a/.github/workflows/cd-slim.yml +++ b/.github/workflows/cd-slim.yml @@ -26,13 +26,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to GHCR - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -40,7 +40,7 @@ jobs: - name: Docker metadata id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ${{ env.IMAGE_NAME }} tags: | @@ -49,7 +49,7 @@ jobs: type=sha,prefix=,format=short - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile.slim diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01095b3..a6b9e8a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,7 +83,7 @@ jobs: - name: Restore Electron cache (Windows) if: runner.os == 'Windows' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ runner.temp }}/.cache/electron @@ -96,7 +96,7 @@ jobs: - name: Restore Electron cache (Linux) if: runner.os == 'Linux' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ runner.temp }}/.cache/electron @@ -110,7 +110,7 @@ jobs: - name: Restore Electron cache (macOS) if: runner.os == 'macOS' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ runner.temp }}/.cache/electron