Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
fetch-depth: 0

- name: Setup Node.js 16
uses: actions/setup-node@v3
- name: Setup Node.js 24
uses: actions/setup-node@v6
with:
node-version: 16.x
node-version: 24.x

# If this step results in changes, they will be committed in the last step
- name: Recompile and Build action
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Check for code changes to the action
if: runner.os == 'Linux'
id: action-code
uses: im-open/did-custom-action-code-change@v1.0.1
uses: im-open/.github/.github/actions/did-custom-action-code-change@41de4b57fe9b05adea689e184c22ae4a1e79f761
with:
files-with-code: "action.yml,package.json,package-lock.json"
folders-with-code: "src,lib"
Expand All @@ -94,11 +94,11 @@ jobs:
- name: Get the next version for the readme if there are code changes to the action
if: runner.os == 'Linux' && steps.action-code.outputs.HAS_CHANGES == 'true'
id: version
uses: im-open/git-version-lite@v2.3
uses: im-open/git-version-lite@53c32b30ae5eb114b11e038f6f0e79dfb01d7c57

- name: Update readme with next version if there are code changes to the action
if: runner.os == 'Linux' && steps.action-code.outputs.HAS_CHANGES == 'true'
uses: im-open/update-action-version-in-file@v1.0.0
uses: im-open/.github/.github/actions/update-action-version-in-file@41de4b57fe9b05adea689e184c22ae4a1e79f761
with:
file-to-update: "./README.md"
action-name: ${{ github.repository }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/increment-version-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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@v6
with:
ref: main
fetch-depth: 0
Expand All @@ -43,7 +43,7 @@ jobs:
# major/minor/patch through commit messages
- name: Increment the version
id: version
uses: im-open/git-version-lite@v2.3
uses: im-open/git-version-lite@a0ce51e3a994785c2897d9e46e7d8b5b3fe98b39
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
default-release-type: major
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v4

- name: Update sql connection string in test project
uses: im-open/variable-substitution@v2.1.1 #v2 or v2.1 can also be used
uses: im-open/variable-substitution@v3.0.0 #v3 or v3.0 can also be used
with:
files: './src/MyApp.Tests/appsettings.json'
env:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ inputs:
description: 'Comma separated list of XML/JSON/YAML files in which tokens are to be substituted. Files names must be specified relative to the folder-path.'
required: true
runs:
using: 'node20'
using: 'node24'
main: 'lib/variableSubstitution.js'
Loading