/** * 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); } })();