mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-16 00:22:34 +00:00
16 lines
275 B
JavaScript
16 lines
275 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2020, 2025
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
const core = require('@actions/core');
|
|
|
|
const setup = require('./lib/setup-terraform');
|
|
|
|
(async () => {
|
|
try {
|
|
await setup();
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
})();
|