diff --git a/Dockerfile b/Dockerfile index 7472b24..1f9e52f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.23.4 +FROM alpine:3.24.1 # Copy all needed files COPY entrypoint.sh / diff --git a/README.md b/README.md index 02dd3cd..60f8d87 100644 --- a/README.md +++ b/README.md @@ -82,9 +82,9 @@ This action supports three tag levels for flexible versioning: | `commit_prefix` | No | `""` | Prefix added to commit message. Combines with `commit_message`. | | `commit_message` | No | `""` | Commit message to set. Combines with `commit_prefix`. Can be used with `amend` to change the commit message. | | `user_name` | No | `""` | Git `user.name` used for created commits. Defaults to `${{ github.actor }}` when empty. | -| `user_email` | No | `""` | Git `user.email` used for created commits. Defaults to `${{ github.actor }}@users.noreply.` when empty. | +| `user_email` | No | `""` | Git `user.email` used for created commits. Defaults to `${{ github.actor }}@users.noreply.` when empty. | | `signing_mode` | No | `""` | Commit signing mode. Supported values are `gpg` and `ssh`. Leave empty to disable signing. | -| `signing_key` | No | `""` | Signing key material. For `gpg`, provide an ASCII-armored private key export. For `ssh`, provide a private key in OpenSSH or PEM format. | +| `signing_key` | No | `""` | Signing key material. For `gpg`, provide an ASCII-armored private key export. For `ssh`, provide a private key in OpenSSH or PEM format. | | `signing_passphrase` | No | `""` | Optional passphrase for the signing key. Passphrase-protected GPG keys are supported. Encrypted SSH signing keys are rejected in the current runtime. | | `force` | No | `false` | Whether to use force push (`--force`). Use only when you need to overwrite remote changes. Potentially dangerous. | | `force_with_lease` | No | `false` | Whether to use force push with lease (`--force-with-lease`). Safer than `force` as it checks for remote changes. Set `fetch-depth: 0` for `actions/checkout`. | diff --git a/tests/docker/local-image.yml b/tests/docker/local-image.yml index 7e80be2..8efa062 100644 --- a/tests/docker/local-image.yml +++ b/tests/docker/local-image.yml @@ -4,7 +4,7 @@ commandTests: - name: OS version check command: cat args: [/etc/os-release] - expectedOutput: [VERSION_ID=3\.23] + expectedOutput: [VERSION_ID=3\.24\.1] - name: Required tools installed command: bash