Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit 4ac0d01

Browse files
updated deprecation messaging
1 parent 9230407 commit 4ac0d01

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
<a href="https://github.com/actions/setup-ruby/actions"><img alt="versions status" src="https://github.com/actions/setup-ruby/workflows/ruby-versions/badge.svg"></a>
77
</p>
88

9-
**Please note: This repository is currently unmaintained by a team of developers at GitHub, we are not going to be updating issues or pull requests on this repository. Please, migrate your workflows to [ruby/setup-ruby](https://github.com/ruby/setup-ruby) by official [Ruby community](https://www.ruby-lang.org/en/).**
9+
**Please note: This action is deprecated and should no longer be used. The team at GitHub has ceased making and accepting code contributions or maintaining issues tracker. Please, migrate your workflows to the [ruby/setup-ruby](https://github.com/ruby/setup-ruby) action, which is being actively maintained by the official Ruby organization.**
10+
1011

1112
This action sets up a ruby environment for versions which are installed on the [Actions Virtual Environments](https://github.com/actions/virtual-environments).
1213

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,8 +1331,8 @@ function run() {
13311331
return __awaiter(this, void 0, void 0, function* () {
13321332
try {
13331333
core.info('------------------------');
1334-
core.info('NOTE: this action is deprecated and will not be maintained in future by GitHub engineers.');
1335-
core.info('Please, migrate to https://github.com/ruby/setup-ruby from official Ruby community.');
1334+
core.info('NOTE: This action is deprecated and is no longer maintained.');
1335+
core.info('Please, migrate to https://github.com/ruby/setup-ruby action, which is being actively maintained.');
13361336
core.info('------------------------');
13371337
let versionSpec = core.getInput('ruby-version', { required: true });
13381338
if (!versionSpec) {

src/main.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ import * as cache from './cache';
44
export async function run() {
55
try {
66
core.info('------------------------');
7+
core.info('NOTE: This action is deprecated and is no longer maintained.');
78
core.info(
8-
'NOTE: this action is deprecated and will not be maintained in future by GitHub engineers.'
9-
);
10-
core.info(
11-
'Please, migrate to https://github.com/ruby/setup-ruby from official Ruby community.'
9+
'Please, migrate to https://github.com/ruby/setup-ruby action, which is being actively maintained.'
1210
);
1311
core.info('------------------------');
1412

0 commit comments

Comments
 (0)