File tree 2 files changed +5
-4
lines changed
src/main/kotlin/net/kautler/github/action/setup_wsl 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -108,8 +108,7 @@ val ubuntu1604 = mapOf(
108
108
109
109
val distributions = listOf (
110
110
debian,
111
- // disable testing on Alpine for the time being due to https://github.com/Vampire/setup-wsl/issues/50
112
- // alpine,
111
+ alpine,
113
112
kali,
114
113
openSuseLeap15_2,
115
114
ubuntu2204,
Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ sealed class Distribution(
63
63
requestUrl = " https://store.rg-adguard.net/api/GetFiles" ,
64
64
data = " type=ProductId&url=$productId " ,
65
65
additionalHeaders = recordOf(
66
- " Content-Type" to " application/x-www-form-urlencoded"
66
+ " Content-Type" to " application/x-www-form-urlencoded" ,
67
+ " User-Agent" to " Setup WSL GitHub Action"
67
68
)
68
69
).await()
69
70
@@ -73,7 +74,8 @@ sealed class Distribution(
73
74
requestUrl = " https://echo.free.beeceptor.com/api/GetFiles" ,
74
75
data = " type=ProductId&url=$productId " ,
75
76
additionalHeaders = recordOf(
76
- " Content-Type" to " application/x-www-form-urlencoded"
77
+ " Content-Type" to " application/x-www-form-urlencoded" ,
78
+ " User-Agent" to " Setup WSL GitHub Action"
77
79
)
78
80
).await()
79
81
if (echoResponse.message.statusCode == 200 ) {
You can’t perform that action at this time.
0 commit comments