Skip to content

Commit 44819bb

Browse files
authored
Merge pull request #405 from swift-actions/fwal/rename-repo
Update org references
2 parents 9b2ffee + 11bd003 commit 44819bb

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/stability.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os: [ubuntu-latest, macos-latest]
1414
swift: ["5.6.1"]
1515
steps:
16-
- uses: fwal/setup-swift@v1
16+
- uses: swift-actions/setup-swift@v1
1717
with:
1818
swift-version: ${{ matrix.swift }}
1919
- name: Swift version
@@ -27,7 +27,7 @@ jobs:
2727
os: [ubuntu-latest, macos-latest]
2828
swift: ["5.6.1"]
2929
steps:
30-
- uses: fwal/setup-swift@main
30+
- uses: swift-actions/setup-swift@main
3131
with:
3232
swift-version: ${{ matrix.swift }}
3333
- name: Swift version

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<a href="https://swift.org">
1010
<img src="https://img.shields.io/badge/Swift-5.6.1-F05138?logo=swift&logoColor=white" alt="Swift 5.6.1" />
1111
</a>
12-
<a href="https://github.com/fwal/setup-swift/releases/latest">
13-
<img src="https://img.shields.io/github/v/release/fwal/setup-swift?sort=semver" alt="Latest release" />
12+
<a href="https://github.com/swift-actions/setup-swift/releases/latest">
13+
<img src="https://img.shields.io/github/v/release/swift-actions/setup-swift?sort=semver" alt="Latest release" />
1414
</a>
1515
</p>
1616

@@ -21,20 +21,20 @@
2121
To run the action with the latest swift version available, simply add the action as a step in your workflow:
2222

2323
```yaml
24-
- uses: fwal/setup-swift@v1
24+
- uses: swift-actions/setup-swift@v1
2525
```
2626
2727
After the environment is configured you can run swift commands using the standard [`run`](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsrun) step:
2828
```yaml
29-
- uses: fwal/setup-swift@v1
29+
- uses: swift-actions/setup-swift@v1
3030
- name: Get swift version
3131
run: swift --version # Swift 5.6.1
3232
```
3333

3434
A specific Swift version can be set using the `swift-version` input:
3535

3636
```yaml
37-
- uses: fwal/setup-swift@v1
37+
- uses: swift-actions/setup-swift@v1
3838
with:
3939
swift-version: "5.1.0"
4040
- name: Get swift version
@@ -51,7 +51,7 @@ strategy:
5151
os: [ubuntu-latest, macos-latest]
5252
swift: ["5.4.3", "5.2.4"]
5353
steps:
54-
- uses: fwal/setup-swift@v1
54+
- uses: swift-actions/setup-swift@v1
5555
with:
5656
swift-version: ${{ matrix.swift }}
5757
- name: Get swift version
@@ -75,15 +75,15 @@ In other words specifying...
7575
YAML interprets eg. `5.0` as a float, this action will then interpret that as `5` which will result in eg. Swift 5.5 being resolved. Quote your inputs! Thus:
7676

7777
```
78-
- uses: fwal/setup-swift@v1
78+
- uses: swift-actions/setup-swift@v1
7979
with:
8080
swift-version: '5.0'
8181
```
8282

8383
Not:
8484

8585
```
86-
- uses: fwal/setup-swift@v1
86+
- uses: swift-actions/setup-swift@v1
8787
with:
8888
swift-version: 5.0
8989
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"repository": {
1717
"type": "git",
18-
"url": "git+https://github.com/fwal/setup-swift.git"
18+
"url": "git+https://github.com/swift-actions/setup-swift.git"
1919
},
2020
"keywords": [
2121
"github",
@@ -27,9 +27,9 @@
2727
"author": "Frederik Wallner",
2828
"license": "MIT",
2929
"bugs": {
30-
"url": "https://github.com/fwal/setup-swift/issues"
30+
"url": "https://github.com/swift-actions/setup-swift/issues"
3131
},
32-
"homepage": "https://github.com/fwal/setup-swift#readme",
32+
"homepage": "https://github.com/swift-actions/setup-swift#readme",
3333
"dependencies": {
3434
"@actions/core": "^1.7.0",
3535
"@actions/exec": "^1.1.1",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function run() {
3939
}
4040

4141
core.setFailed(
42-
`Unexpected error, unable to continue. Please report at https://github.com/fwal/setup-swift/issues${EOL}${dump}`
42+
`Unexpected error, unable to continue. Please report at https://github.com/swift-actions/setup-swift/issues${EOL}${dump}`
4343
);
4444
}
4545
}

0 commit comments

Comments
 (0)