You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -28,7 +28,7 @@ After the environment is configured you can run swift commands using the standar
28
28
```yaml
29
29
- uses: fwal/setup-swift@v1
30
30
- name: Get swift version
31
-
run: swift --version # Swift 5.4
31
+
run: swift --version # Swift 5.4.3
32
32
```
33
33
34
34
A specific Swift version can be set using the `swift-version` input:
@@ -49,7 +49,7 @@ runs-on: ${{ matrix.os }}
49
49
strategy:
50
50
matrix:
51
51
os: [ubuntu-latest, macos-latest]
52
-
swift: ["5.4", "5.2.4"]
52
+
swift: ["5.4.3", "5.2.4"]
53
53
steps:
54
54
- uses: fwal/setup-swift@v1
55
55
with:
@@ -68,11 +68,11 @@ For example, Swift is available as version `5.1` but this will be interpreted as
68
68
In other words specifying...
69
69
- `"5.1.0"`will resolve to version `5.1`
70
70
- `"5.1"`will resolve to latest patch version (aka `5.1.1`)
71
-
- `"5"`will resolve to latest minor and patch version (aka `5.4`)
71
+
- `"5"`will resolve to latest minor and patch version (aka `5.4.3`)
72
72
73
73
### Caveats
74
74
75
-
YAML interprets eg. `5.0` as a float, this action will then interpret that as `5` which will result in eg. Swift 5.4 being resolved. Quote your inputs! Thus:
75
+
YAML interprets eg. `5.0` as a float, this action will then interpret that as `5` which will result in eg. Swift 5.4.3 being resolved. Quote your inputs! Thus:
0 commit comments