Move the workflow actions off Node 20
checkout and action-gh-release both still target Node 20, which GitHub has deprecated and is already force-running on Node 24. Nothing is broken yet, but the runners won't accommodate it indefinitely, and a release workflow is a poor place to discover that.
This commit is contained in:
@@ -28,7 +28,7 @@ jobs:
|
|||||||
# below treats as "fall back to ad-hoc".
|
# below treats as "fall back to ad-hoc".
|
||||||
SIGNING_IDENTITY: ${{ secrets.SIGNING_IDENTITY }}
|
SIGNING_IDENTITY: ${{ secrets.SIGNING_IDENTITY }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.tag || github.ref }}
|
ref: ${{ inputs.tag || github.ref }}
|
||||||
|
|
||||||
@@ -139,7 +139,7 @@ jobs:
|
|||||||
run: ditto -c -k --sequesterRsrc --keepParent ".build/shannoncoat.app" "shannoncoat.app.zip"
|
run: ditto -c -k --sequesterRsrc --keepParent ".build/shannoncoat.app" "shannoncoat.app.zip"
|
||||||
|
|
||||||
- name: Publish release
|
- name: Publish release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v3
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ inputs.tag || github.ref_name }}
|
tag_name: ${{ inputs.tag || github.ref_name }}
|
||||||
files: |
|
files: |
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ jobs:
|
|||||||
tag: ${{ steps.tag.outputs.tag }}
|
tag: ${{ steps.tag.outputs.tag }}
|
||||||
created: ${{ steps.tag.outputs.created }}
|
created: ${{ steps.tag.outputs.created }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user