From 294085357786ab3e90b38d3916fc6cc2a30c5f84 Mon Sep 17 00:00:00 2001 From: rhysd Date: Wed, 1 Nov 2023 23:04:54 +0900 Subject: [PATCH] update popular actions data set --- popular_actions.go | 19 +++++++++++++++++++ scripts/generate-popular-actions/main.go | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/popular_actions.go b/popular_actions.go index 17572d3bb..7043d268b 100644 --- a/popular_actions.go +++ b/popular_actions.go @@ -1083,6 +1083,25 @@ var PopularActions = map[string]*ActionMetadata{ "node-version": {"node-version"}, }, }, + "actions/setup-node@v4": { + Name: "Setup Node.js environment", + Inputs: ActionMetadataInputs{ + "always-auth": {"always-auth", false}, + "architecture": {"architecture", false}, + "cache": {"cache", false}, + "cache-dependency-path": {"cache-dependency-path", false}, + "check-latest": {"check-latest", false}, + "node-version": {"node-version", false}, + "node-version-file": {"node-version-file", false}, + "registry-url": {"registry-url", false}, + "scope": {"scope", false}, + "token": {"token", false}, + }, + Outputs: ActionMetadataOutputs{ + "cache-hit": {"cache-hit"}, + "node-version": {"node-version"}, + }, + }, "actions/setup-python@v1": { Name: "Setup Python", Inputs: ActionMetadataInputs{ diff --git a/scripts/generate-popular-actions/main.go b/scripts/generate-popular-actions/main.go index e7b27e18b..331b78c3c 100644 --- a/scripts/generate-popular-actions/main.go +++ b/scripts/generate-popular-actions/main.go @@ -190,8 +190,8 @@ var popularActions = []*action{ }, { slug: "actions/setup-node", - tags: []string{"v1", "v2", "v3"}, - next: "v4", + tags: []string{"v1", "v2", "v3", "v4"}, + next: "v5", }, { slug: "actions/setup-python",