Skip to content

Commit

Permalink
Merge pull request #42 from Ana06/release2-3
Browse files Browse the repository at this point in the history
Release 2.3.0 with Node 20
  • Loading branch information
Ana06 authored Feb 23, 2024
2 parents 5558be5 + 64dffb4 commit 6f5373e
Show file tree
Hide file tree
Showing 5 changed files with 22,077 additions and 22,024 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: |
Expand All @@ -79,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: files
uses: ./
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ This project is a fork of [jitterbit/get-changed-files](https://github.com/jitte
See [action.yml](action.yml)

```yaml
- uses: Ana06/get-changed-files@v2.2.0
- uses: Ana06/get-changed-files@v2.3.0
with:
# Format of the steps output context.
# Can be 'space-delimited', 'csv', or 'json'.
Expand All @@ -61,7 +61,7 @@ Consider using one of the other formats if that's the case.

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
- run: |
for changed_file in ${{ steps.files.outputs.all }}; do
echo "Do something with this ${changed_file}."
Expand All @@ -75,7 +75,7 @@ Consider using one of the other formats if that's the case.

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
with:
filter: '*.php'
- run: |
Expand All @@ -91,7 +91,7 @@ Therefore, including all YML files first and excluding the YML files of your `.g
If those two globs were inverted, you **would** include all the YML files, with the ones in your `.github/*/` directories.

```yaml
- uses: Ana06/get-changed-files@v2.2.0
- uses: Ana06/get-changed-files@v2.3.0
with:
filter: |
*.yml
Expand All @@ -102,7 +102,7 @@ If those two globs were inverted, you **would** include all the YML files, with

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
filter: '*'
Expand All @@ -117,7 +117,7 @@ If those two globs were inverted, you **would** include all the YML files, with

```yaml
- id: files
uses: Ana06/get-changed-files@v2.2.0
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'json'
filter: '*'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ branding:
icon: file
color: purple
runs:
using: node16
using: node20
main: dist/index.js
inputs:
token:
Expand Down
Loading

0 comments on commit 6f5373e

Please sign in to comment.