Skip to content

Commit 48efd73

Browse files
committed
Follow repository transfer and rename
1 parent 5478747 commit 48efd73

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v2
55-
- uses: eregon/use-ruby-action@v1
55+
- uses: ruby/setup-ruby@v1
5656
with:
5757
ruby-version: 2.6
5858
- run: ruby -v
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ${{ matrix.os }}
7676
steps:
7777
- uses: actions/checkout@v2
78-
- uses: eregon/use-ruby-action@v1
78+
- uses: ruby/setup-ruby@v1
7979
with:
8080
ruby-version: ${{ matrix.ruby }}
8181
- run: ruby -v

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function validateRubyEngineAndVersion(platform, engineVersions, engine, version)
5757
} else {
5858
throw new Error(`Unknown version ${version} for ${engine} on ${platform}
5959
available versions for ${engine} on ${platform}: ${engineVersions.join(', ')}
60-
File an issue at https://github.com/eregon/use-ruby-action/issues if would like support for a new version`)
60+
File an issue at https://github.com/ruby/setup-ruby/issues if would like support for a new version`)
6161
}
6262
}
6363

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "use-ruby-action",
2+
"name": "setup-ruby",
33
"version": "0.1.0",
44
"description": "Download a prebuilt Ruby and add it to the PATH in 5 seconds",
55
"main": "index.js",
@@ -9,7 +9,7 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/eregon/use-ruby-action.git"
12+
"url": "git+https://github.com/ruby/setup-ruby.git"
1313
},
1414
"keywords": [
1515
"GitHub",
@@ -19,9 +19,9 @@
1919
"author": "Benoit Daloze",
2020
"license": "MIT",
2121
"bugs": {
22-
"url": "https://github.com/eregon/use-ruby-action/issues"
22+
"url": "https://github.com/ruby/setup-ruby/issues"
2323
},
24-
"homepage": "https://github.com/eregon/use-ruby-action",
24+
"homepage": "https://github.com/ruby/setup-ruby",
2525
"dependencies": {
2626
"@actions/core": "^1.1.1",
2727
"@actions/exec": "^1.0.1",

windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export async function install(platform, ruby) {
2525
}
2626
const base = url.slice(url.lastIndexOf('/') + 1, url.length - '.7z'.length)
2727

28-
// Extract to SSD, see https://github.com/eregon/use-ruby-action/pull/14
28+
// Extract to SSD, see https://github.com/ruby/setup-ruby/pull/14
2929
const drive = (process.env['GITHUB_WORKSPACE'] || 'C')[0]
3030

3131
const downloadPath = await tc.downloadTool(url)

0 commit comments

Comments
 (0)