chore: bump node to v22.0.0 #18
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
name: patch | |
on: | |
# TODO: Run patch job on pull_request | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
patch: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install Packages | |
uses: ConorMacBride/[email protected] | |
with: | |
apt: patchutils | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Make patches | |
# if: steps.cache-patches.outputs.cache-hit != 'true' | |
run: | | |
chmod 755 .github/patch | |
bash .github/patch | |
# TODO: Find way to uniquely label caches. | |
# - name: Cache patches | |
# id: cache-patches | |
# uses: actions/[email protected] | |
# with: | |
# path: patches | |
# key: ${{ runner.os }}-patches | |
- name: Commit patches | |
uses: GuillaumeFalourd/[email protected] | |
with: | |
commit_message: "Update NW.js patches" |