Skip to content

Commit

Permalink
Merge pull request #10 from im-open/Update-to-node20
Browse files Browse the repository at this point in the history
Update to node20 +semver:minor
  • Loading branch information
DougDyreng authored Aug 8, 2024
2 parents ac642f2 + 1693115 commit e0a10f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/auto-update-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
# access to the target repository from public forks. This should remain as a pull_request
# trigger because checkout, build, format and checking for changes do not need elevated
# permissions to the repository. The reduced permissions for public forks is adequate.
# Since this will commit readme/recompile changes back to the branch, special attention
# should be paid to changes made to this workflow when reviewing the PR and granting
# Since this will commit readme/recompile changes back to the branch, special attention
# should be paid to changes made to this workflow when reviewing the PR and granting
# permission to first time contributors to run the workflow.
pull_request:
# Don't include any specific paths here so we always get a build that produces a status
Expand All @@ -15,10 +15,10 @@ on:
jobs:
update-readme:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
Expand All @@ -29,7 +29,7 @@ jobs:
with:
files-with-code: 'action.yml,index.js'
token: ${{ secrets.GITHUB_TOKEN }}

- name: Get the next version for the readme if there are code changes to the action
if: steps.action-code.outputs.HAS_CHANGES == 'true'
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/increment-version-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# on a pull_request_target. But we need to be extra careful not to trigger any script
# that may operate on PR controlled contents like in the case of npm install.
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
custom-event:
description: 'Custom event summary. If provided the GitHub event type is ignored and the given summary used. A link to the run is included in the event.'
required: false

runs:
using: 'node16'
using: 'node20'
main: 'index.js'

0 comments on commit e0a10f4

Please sign in to comment.