Skip to content

Commit

Permalink
Merge pull request #144 from raminqaf/dep/update-node-20
Browse files Browse the repository at this point in the history
Replace Node.js 16 with Node.js 20
  • Loading branch information
andstor authored Jan 28, 2024
2 parents 20b4d2e + d591c26 commit 05baca1
Show file tree
Hide file tree
Showing 7 changed files with 144 additions and 144 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- run: |
npm ci
npm run all
2 changes: 1 addition & 1 deletion .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
actions-tagger:
runs-on: ubuntu-latest
steps:
- uses: Actions-R-Us/actions-tagger@latest
- uses: Actions-R-Us/actions-tagger@v2.0.3
with:
publish_latest: true
env:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![build-test](https://github.com/andstor/file-existence-action/workflows/build/badge.svg)

This is a GitHub Action to check for the existence of files. It can be used for conditionally running workflow steps based on file(s) existence.
This is a GitHub Action to check for the existence of files. It can be used for conditionally running workflow steps based on file(s) existence.

## Usage

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check file existence
id: check_files
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'File Existence'
description: 'GitHub Action to check for file existence'
author: 'André Storhaug'
branding:
icon: 'file-text'
icon: 'file-text'
color: 'green'
inputs:
files:
Expand All @@ -27,5 +27,5 @@ outputs:
files_exists:
description: 'Whether the file(s) exists or not.'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
Loading

0 comments on commit 05baca1

Please sign in to comment.