@@ -10,7 +10,7 @@ Extract information about the dependencies being updated by a Dependabot-generat
10
10
11
11
## Usage instructions
12
12
13
- Create a workflow file that contains a step that uses: ` dependabot/fetch-metadata@v1.3.2 ` , e.g.
13
+ Create a workflow file that contains a step that uses: ` dependabot/fetch-metadata@v1.3.3 ` , e.g.
14
14
15
15
``` yaml
16
16
-- .github/workflows/dependabot-prs.yml
22
22
steps :
23
23
- name : Fetch Dependabot metadata
24
24
id : dependabot-metadata
25
- uses : dependabot/fetch-metadata@v1.3.2
25
+ uses : dependabot/fetch-metadata@v1.3.3
26
26
with :
27
27
alert-lookup : true
28
28
compat-lookup : true
98
98
steps:
99
99
- name: Dependabot metadata
100
100
id: dependabot-metadata
101
- uses: dependabot/fetch-metadata@v1.3.2
101
+ uses: dependabot/fetch-metadata@v1.3.3
102
102
- uses: actions/checkout@v3
103
103
- name: Approve a PR if not already approved
104
104
run: |
@@ -132,7 +132,7 @@ jobs:
132
132
steps :
133
133
- name : Dependabot metadata
134
134
id : dependabot-metadata
135
- uses : dependabot/fetch-metadata@v1.3.2
135
+ uses : dependabot/fetch-metadata@v1.3.3
136
136
- name : Enable auto-merge for Dependabot PRs
137
137
if : ${{contains(steps.dependabot-metadata.outputs.dependency-names, 'rails') && steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch'}}
138
138
run : gh pr merge --auto --merge "$PR_URL"
@@ -161,7 +161,7 @@ jobs:
161
161
steps :
162
162
- name : Dependabot metadata
163
163
id : dependabot-metadata
164
- uses : dependabot/fetch-metadata@v1.3.2
164
+ uses : dependabot/fetch-metadata@v1.3.3
165
165
- name : Add a label for all production dependencies
166
166
if : ${{ steps.dependabot-metadata.outputs.dependency-type == 'direct:production' }}
167
167
run : gh pr edit "$PR_URL" --add-label "production"
0 commit comments