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 eb6974e commit d376a76Copy full SHA for d376a76
1 file changed
.github/workflows/update-package-json.yml
@@ -19,17 +19,15 @@ jobs:
19
uses: actions/checkout@v4
20
21
- name: Set up Python
22
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
23
with:
24
python-version: '3.11'
25
26
- name: Validate and update package.json
27
id: validate
28
run: |
29
- python .github/scripts/validate-package-json.py || true
30
- EXIT_CODE=$?
+ python .github/scripts/validate-package-json.py; EXIT_CODE=$?
31
echo "changes_made=$EXIT_CODE" >> $GITHUB_OUTPUT
32
- exit 0
33
34
- name: Commit and push changes
35
if: steps.validate.outputs.changes_made == '1'
0 commit comments