From 96d1dc441ab411e811f3d731b5805c34071bc982 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Mar 2025 18:14:55 +0000 Subject: [PATCH 1/6] Bump dorny/paths-filter from 2.11.1 to 3.0.2 Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 2.11.1 to 3.0.2. - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/4512585405083f25c027a35db413c2b3b9006d50...de90cc6fb38fc0963ad72b210f1f284cd68cea36) --- updated-dependencies: - dependency-name: dorny/paths-filter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/PR-powershell-daily.yml | 2 +- .github/workflows/PR-powershell-preview.yml | 2 +- .github/workflows/PR-powershell.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PR-powershell-daily.yml b/.github/workflows/PR-powershell-daily.yml index bcd487c..e8f1edd 100644 --- a/.github/workflows/PR-powershell-daily.yml +++ b/.github/workflows/PR-powershell-daily.yml @@ -67,7 +67,7 @@ jobs: uses: actions/checkout@v4 - name: Check for applicable files - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 + uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 id: filter with: filters: | diff --git a/.github/workflows/PR-powershell-preview.yml b/.github/workflows/PR-powershell-preview.yml index da47996..00133b8 100644 --- a/.github/workflows/PR-powershell-preview.yml +++ b/.github/workflows/PR-powershell-preview.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@v4 - name: Check for applicable files - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 + uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 id: filter with: filters: | diff --git a/.github/workflows/PR-powershell.yml b/.github/workflows/PR-powershell.yml index 3260b86..590e293 100644 --- a/.github/workflows/PR-powershell.yml +++ b/.github/workflows/PR-powershell.yml @@ -67,7 +67,7 @@ jobs: uses: actions/checkout@v4 - name: Check for applicable files - uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 + uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 id: filter with: filters: | From 2b206e31c27679098c483ed6e7c292750ec888f7 Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Thu, 27 Mar 2025 11:16:30 -0700 Subject: [PATCH 2/6] Update PR-powershell-daily.yml --- .github/workflows/PR-powershell-daily.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PR-powershell-daily.yml b/.github/workflows/PR-powershell-daily.yml index e8f1edd..69539ef 100644 --- a/.github/workflows/PR-powershell-daily.yml +++ b/.github/workflows/PR-powershell-daily.yml @@ -49,8 +49,8 @@ jobs: list-files: json filters: | workflows: - - '.github/workflows/PR-powershell-lts.yml' - - 'Formula/powershell-lts.rb' + - '.github/workflows/PR-powershell-daily.yml' + - 'Formula/powershell-daily.rb' - name: Capture outputs run: | From 90ea673589d67111adab496a52094f45d8b01c18 Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Thu, 27 Mar 2025 11:19:46 -0700 Subject: [PATCH 3/6] Fix output variable name in workflow --- .github/workflows/PR-powershell-daily.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-powershell-daily.yml b/.github/workflows/PR-powershell-daily.yml index 69539ef..e39a434 100644 --- a/.github/workflows/PR-powershell-daily.yml +++ b/.github/workflows/PR-powershell-daily.yml @@ -37,7 +37,7 @@ jobs: pull-requests: read # Set job outputs to values from filter step outputs: - source: ${{ steps.filter.outputs.workflows }} + workflows: ${{ steps.filter.outputs.workflows }} steps: - name: checkout uses: actions/checkout@v4 From 00dad352b009b48b77df77e74c72c400d56c07e8 Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Thu, 27 Mar 2025 11:20:26 -0700 Subject: [PATCH 4/6] Update workflows and filters in PR workflow --- .github/workflows/PR-powershell-preview.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PR-powershell-preview.yml b/.github/workflows/PR-powershell-preview.yml index 00133b8..630d75c 100644 --- a/.github/workflows/PR-powershell-preview.yml +++ b/.github/workflows/PR-powershell-preview.yml @@ -35,7 +35,7 @@ jobs: pull-requests: read # Set job outputs to values from filter step outputs: - source: ${{ steps.filter.outputs.workflows }} + workflows: ${{ steps.filter.outputs.workflows }} steps: - name: checkout uses: actions/checkout@v4 @@ -47,8 +47,8 @@ jobs: list-files: json filters: | workflows: - - '.github/workflows/PR-powershell-lts.yml' - - 'Formula/powershell-lts.rb' + - '.github/workflows/PR-powershell-preview.yml' + - 'Formula/powershell-preview.rb' - name: Capture outputs run: | From f7d87df346917aeac6bd90fbd0f5a6295680a95a Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Thu, 27 Mar 2025 11:21:15 -0700 Subject: [PATCH 5/6] Fix workflow output and filter paths --- .github/workflows/PR-powershell.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PR-powershell.yml b/.github/workflows/PR-powershell.yml index 590e293..ea1b13c 100644 --- a/.github/workflows/PR-powershell.yml +++ b/.github/workflows/PR-powershell.yml @@ -37,7 +37,7 @@ jobs: pull-requests: read # Set job outputs to values from filter step outputs: - source: ${{ steps.filter.outputs.workflows }} + workflows: ${{ steps.filter.outputs.workflows }} steps: - name: checkout uses: actions/checkout@v4 @@ -49,8 +49,8 @@ jobs: list-files: json filters: | workflows: - - '.github/workflows/PR-powershell-lts.yml' - - 'Formula/powershell-lts.rb' + - '.github/workflows/PR-powershell.yml' + - 'Formula/powershell.rb' - name: Capture outputs run: | From 9331978bf32988e7cb17534d24b2a442e4a6b734 Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Thu, 27 Mar 2025 11:23:49 -0700 Subject: [PATCH 6/6] Update PR-powershell-lts.yml --- .github/workflows/PR-powershell-lts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-powershell-lts.yml b/.github/workflows/PR-powershell-lts.yml index c269bdf..3b9a37e 100644 --- a/.github/workflows/PR-powershell-lts.yml +++ b/.github/workflows/PR-powershell-lts.yml @@ -35,7 +35,7 @@ jobs: pull-requests: read # Set job outputs to values from filter step outputs: - source: ${{ steps.filter.outputs.workflows }} + workflows: ${{ steps.filter.outputs.workflows }} steps: - name: checkout uses: actions/checkout@v4