-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 1014 Bytes
/
Copy pathaction.yml
File metadata and controls
24 lines (24 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: 'Mozilla SOPS Installer'
description: 'Install a specific version of the sops binary. Acceptable values are latest or any semantic version string like v3.13.1'
inputs:
version:
description: 'Version of sops'
required: true
default: 'latest'
downloadBaseURL:
description: 'Set the download base URL (must end with a trailing slash and follow the <tag>/<asset> layout used by getsops/sops releases)'
required: false
default: 'https://github.com/getsops/sops/releases/download/'
token:
description: 'GitHub token used to authenticate the request that resolves the "latest" SOPS version, raising the GitHub API rate limit from 60/hr (unauthenticated) to 1000/hr. Typically the workflow GITHUB_TOKEN secret. Unused when `version` is not `latest`.'
required: false
default: ''
outputs:
sops-path:
description: 'Path to the cached sops binary'
branding:
icon: 'unlock'
color: 'gray-dark'
runs:
using: 'node24'
main: 'lib/index.js'