summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.generate.ts
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x.github/workflows/ci.generate.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 1fcdf9816..d97413ce7 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -172,7 +172,7 @@ const installRustStep = {
};
const installPythonSteps = [{
name: "Install Python",
- uses: "actions/setup-python@v4",
+ uses: "actions/setup-python@v5",
with: { "python-version": 3.11 },
}, {
name: "Remove unused versions of Python",
@@ -187,7 +187,7 @@ const installPythonSteps = [{
}];
const installNodeStep = {
name: "Install Node",
- uses: "actions/setup-node@v3",
+ uses: "actions/setup-node@v4",
with: { "node-version": 18 },
};
const installProtocStep = {
@@ -599,7 +599,7 @@ const ci = {
{
// Restore cache from the latest 'main' branch build.
name: "Restore cache build output (PR)",
- uses: "actions/cache/restore@v3",
+ uses: "actions/cache/restore@v4",
if:
"github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')",
with: {