Bump tempfile from 3.14.0 to 3.15.0 #274
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [pull_request] | |
name: "Update Vercel runtime" | |
# required for dependabot to be able to commit changes | |
permissions: | |
contents: write | |
jobs: | |
update-runtime: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.REPO_TOKEN }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
fetch-depth: 2 | |
- name: Check if package.json changed | |
id: changed-files-yaml | |
uses: tj-actions/changed-files@v45 | |
with: | |
files_yaml: | | |
package: | |
- package.json | |
- name: Sync vercel.json | |
if: steps.changed-files-yaml.outputs.package_any_changed == 'true' | |
run: | | |
./sync-runtime.sh | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: "." | |
message: "apply vercel runtime changes from package.json" | |
push: true |