Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/cd-slim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ 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 }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading