Skip to content

Commit

Permalink
Merge pull request #7 from GateNLP/actions-upgrade
Browse files Browse the repository at this point in the history
Upgrade workflow files to latest checkout and changed-files action versions
  • Loading branch information
ianroberts authored Feb 12, 2024
2 parents d87e525 + f1cdc11 commit 6223f8b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Find modified folders
id: changed-dirs
uses: tj-actions/changed-files@v35
uses: tj-actions/changed-files@v42
with:
dir_names: "true"
dir_names_exclude_root: "true"
dir_names_exclude_current_dir: "true"
dir_names_max_depth: "1"

- name: Filter for just modified charts
Expand Down Expand Up @@ -47,7 +49,7 @@ jobs:

steps:
- name: Checkout PR
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lockfile exists for ${{ matrix.chart }}
run: |
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/publish-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Find modified folders
id: changed-dirs
uses: tj-actions/changed-files@v35
uses: tj-actions/changed-files@v42
with:
dir_names: "true"
dir_names_exclude_root: "true"
dir_names_exclude_current_dir: "true"
dir_names_max_depth: "1"

- name: Filter for just modified charts
Expand Down Expand Up @@ -48,7 +50,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Publish chart to GATE repository
run: |
Expand Down

0 comments on commit 6223f8b

Please sign in to comment.