We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85d6787 commit 3f4d45bCopy full SHA for 3f4d45b
1 file changed
actions/setup-environment/action.yml
@@ -13,6 +13,10 @@ inputs:
13
description: 'The ref to checkout'
14
required: false
15
default: ''
16
+ fetch-depth:
17
+ description: 'The fetch depth'
18
+ required: false
19
+ default: 1
20
node-version:
21
description: 'Node.js version to setup'
22
@@ -38,6 +42,7 @@ runs:
38
42
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39
43
with:
40
44
ref: ${{ inputs.ref }}
45
+ fetch-depth: ${{ inputs.fetch-depth }}
41
46
47
- name: Setup Node.js (with version file)
48
if: inputs.use-version-file == 'true'
0 commit comments