/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ const core = require('@actions/core'); const setup = require('./lib/setup-tofu'); (async () => { try { await setup(); } catch (error) { core.setFailed(error.message); } })();