Skip to content

Commit 6319120

Browse files
committed
Update a few deps
1 parent 0208ecf commit 6319120

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.ci/ci-package.sh

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cd dnscrypt-proxy || exit 1
77
# setup the environment
88

99
sudo apt-get update -y
10-
sudo apt-get install -y wget wine dotnet-sdk-6.0
10+
sudo apt-get install -y wget wine dotnet-sdk-8.0
1111
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install -y wine32
1212

1313
sudo apt-get install -y unzip
@@ -16,13 +16,13 @@ export WINEPREFIX="$HOME"/.wine32
1616
export WINEARCH=win32
1717
export WINEDEBUG=-all
1818

19-
wget https://dl.winehq.org/wine/wine-mono/8.1.0/wine-mono-8.1.0-x86.msi
19+
wget https://dl.winehq.org/wine/wine-mono/9.4.0/wine-mono-9.4.0-x86.msi
2020
WINEPREFIX="$HOME/.wine32" WINEARCH=win32 wineboot --init
21-
WINEPREFIX="$HOME/.wine32" WINEARCH=win32 wine msiexec /i wine-mono-8.1.0-x86.msi
21+
WINEPREFIX="$HOME/.wine32" WINEARCH=win32 wine msiexec /i wine-mono-9.4.0-x86.msi
2222

2323
mkdir "$HOME"/.wine32/drive_c/temp
2424
mkdir -p "$HOME"/.wine/drive_c/temp
25-
wget https://github.com/wixtoolset/wix3/releases/download/wix3112rtm/wix311-binaries.zip -nv -O wix.zip
25+
wget https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip -nv -O wix.zip
2626

2727
unzip wix.zip -d "$HOME"/wix
2828
rm -f wix.zip
@@ -52,7 +52,6 @@ for arch in x64 x86; do
5252

5353
wine candle.exe -dVersion="$version" -dPlatform=$arch -dPath=build\\$binpath -arch $arch wixproj\\dnscrypt.wxs -out build\\dnscrypt-$arch.wixobj
5454
wine light.exe -out build\\dnscrypt-proxy-$arch-"$version".msi build\\dnscrypt-$arch.wixobj -sval
55-
5655
done
5756

5857
cd "$builddir" || exit

.github/workflows/releases.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
prerelease: false
8484

8585
- name: Upload release assets
86-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda
86+
uses: softprops/action-gh-release@c43d7637b9b9ce3e953168c325d27253a5d48d8e
8787
if: startsWith(github.ref, 'refs/tags/')
8888
env:
8989
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)