Files
mlugg 0a889b2ab1 Update @actions/cache to 4.0.2
Version 3 of `@actions/cache` is now deprecated, and can cause runs to
fail; see https://github.com/actions/toolkit/blob/main/packages/cache/README.md.

I have no fucking clue why this was considered a major release; it's
explicitly documented as being entirely backwards-compatible. SemVer be
damned, amirite?
2025-03-10 17:01:15 +00:00

10 lines
256 B
JavaScript
Executable File

#!/usr/bin/env node
const {ProtobuftsPlugin} = require("../build/protobufts-plugin");
const pkg = require("../package.json");
new ProtobuftsPlugin(pkg.version).run().catch(_ => {
process.stderr.write('failed to run plugin');
process.exit(1);
});