File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 77 <img src="https://img.shields.io/badge/platform-macOS%20%7C%20Ubuntu%20%7C%20Windows-lightgray" alt="Supports macOS, Ubuntu & Windows" />
88 </a >
99 <a href =" https://swift.org " >
10- <img src="https://img.shields.io/badge/Swift-5.10.1 -F05138?logo=swift&logoColor=white" alt="Swift 5.10.1 " />
10+ <img src="https://img.shields.io/badge/Swift-6.0.0 -F05138?logo=swift&logoColor=white" alt="Swift 6.0.0 " />
1111 </a >
1212 <a href =" https://github.com/swift-actions/setup-swift/releases/latest " >
1313 <img src="https://img.shields.io/github/v/release/swift-actions/setup-swift?sort=semver" alt="Latest release" />
@@ -28,7 +28,7 @@ After the environment is configured you can run swift commands using the standar
2828` ` ` yaml
2929- uses: swift-actions/setup-swift@v2
3030- name: Get swift version
31- run: swift --version # Swift 5.10.1
31+ run: swift --version # Swift 6.0
3232` ` `
3333
3434A specific Swift version can be set using the `swift-version` input :
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import * as core from "@actions/core";
33import { System , OS } from "./os" ;
44
55const VERSIONS_LIST : [ string , OS [ ] ] [ ] = [
6+ [ "6.0" , [ OS . MacOS , OS . Ubuntu ] ] ,
67 [ "5.10.1" , [ OS . MacOS , OS . Ubuntu ] ] ,
78 [ "5.10" , [ OS . MacOS , OS . Ubuntu ] ] ,
89 [ "5.9.2" , [ OS . MacOS , OS . Ubuntu ] ] ,
You can’t perform that action at this time.
0 commit comments