Skip to content

Commit 6b7195a

Browse files
committed
v0.4.1
1 parent 48e6ed5 commit 6b7195a

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
ref: ${{ env.RELEASE_TAG }}
3131

3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v3
33+
uses: docker/setup-buildx-action@v4
3434

3535
- name: Build local smoke image
36-
uses: docker/build-push-action@v6
36+
uses: docker/build-push-action@v7
3737
with:
3838
context: .
3939
file: docker/Dockerfile
@@ -90,7 +90,7 @@ jobs:
9090
9191
- name: Log in to GHCR
9292
if: startsWith(env.RELEASE_TAG, 'v')
93-
uses: docker/login-action@v3
93+
uses: docker/login-action@v4
9494
with:
9595
registry: ghcr.io
9696
username: ${{ github.actor }}
@@ -99,7 +99,7 @@ jobs:
9999
- name: Docker metadata
100100
if: startsWith(env.RELEASE_TAG, 'v')
101101
id: meta
102-
uses: docker/metadata-action@v5
102+
uses: docker/metadata-action@v6
103103
with:
104104
images: ghcr.io/kyonru/sprite-sheet-helper
105105
tags: |
@@ -113,7 +113,7 @@ jobs:
113113
114114
- name: Publish image
115115
if: startsWith(env.RELEASE_TAG, 'v')
116-
uses: docker/build-push-action@v6
116+
uses: docker/build-push-action@v7
117117
with:
118118
context: .
119119
file: docker/Dockerfile

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "spritesheet-helper",
33
"private": true,
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"type": "module",
66
"packageManager": "npm@11.7.0",
77
"workspaces": [

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "app"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Sprite Sheet Helper"
55
authors = ["kyonru"]
66
license = ""

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "spritesheet-helper",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"identifier": "com.kyonru.spritesheethelper",
66
"build": {
77
"frontendDist": "../dist",

0 commit comments

Comments
 (0)