Skip to content

Commit

Permalink
Update default Wine version to 9.0 from 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jan 25, 2024
1 parent 4e3608e commit db4ef4a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

- Update the default Wine version to 9.0 from 8.0.

## [1.19.0] - 2024-01-25

- Update the default QEMU version to 8.2 from 8.1.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ On Linux host, this action installs MinGW toolchain and Wine.
<!-- omit in toc -->
#### <a name="wine-runner"></a>wine runner

The current default Wine version is 8.0.2.
The current default Wine version is 9.0.

You can select/pin the version by using `wine` input option, or `@` syntax in `runner` input option (if both are set, the latter is preferred). For example:

Expand Down
4 changes: 2 additions & 2 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export RUSTUP_MAX_RETRIES=10
# https://github.com/taiki-e/dockerfiles/pkgs/container/qemu-user
default_qemu_version='8.2'
# https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/main/binary-amd64
default_wine_version='8.0.2'
default_wine_version='9.0.0.0'

if [[ $# -gt 0 ]]; then
bail "invalid argument '$1'"
Expand Down Expand Up @@ -491,7 +491,7 @@ EOF
wine@*) wine_version="${runner#*@}" ;;
*) bail "unrecognized runner '${runner}'" ;;
esac
if [[ "${wine_version}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
if [[ "${wine_version}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?$ ]]; then
wine_branch=stable
elif [[ "${wine_version}" =~ ^[0-9]+\.[0-9]+$ ]]; then
wine_branch=devel
Expand Down

0 comments on commit db4ef4a

Please sign in to comment.