Skip to content

Commit ad494d6

Browse files
⚙️ [Maintenance]: Align workflows across action repositories (#20)
This pull request updates dependencies in the GitHub Actions workflows to use newer versions of third-party actions. The changes focus on keeping the CI/CD pipeline up to date and improving maintainability. Dependency updates in GitHub Actions workflows: * Updated the `PSModule/Invoke-Pester` action in `.github/workflows/Action-Test.yml` from version `v4.2.2` to `v4.2.3` to ensure the latest fixes and improvements are included. * Updated the `PSModule/Release-GHRepository` action in `.github/workflows/Release.yml` from version `v2.0.1` to `v2.0.2`. Also, renamed the checkout step for clarity.
1 parent 774b6f7 commit ad494d6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/Action-Test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
IssueBody: ${{ fromJson(steps.GetIssueFileContent.outputs.result).issueFileContent }}
4343

4444
- name: Action-Test-Results
45-
uses: PSModule/Invoke-Pester@882994cbe1ff07c3fc8afdac52404c940f99b331 # v4.2.2
45+
uses: PSModule/Invoke-Pester@1fcb663c0efe914e8374d78e16aa7bb907ea2434 # v4.2.3
4646
env:
4747
data: ${{ steps.Action-Test.outputs.data }}

.github/workflows/Release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,10 @@ jobs:
2828
Release:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- name: Checkout Code
31+
- name: Checkout repo
3232
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
with:
3434
persist-credentials: false
3535

3636
- name: Release
37-
uses: PSModule/Release-GHRepository@88c70461c8f16cc09682005bcf3b7fca4dd8dc1a # v2.0.1
38-
env:
39-
GITHUB_TOKEN: ${{ github.token }}
37+
uses: PSModule/Release-GHRepository@5a5165d66f485d1aad217ef34a190178b214fdcb # v2.0.2

0 commit comments

Comments
 (0)