🩹 [Patch]: Bump Process-PSModule to v5#4
Merged
Marius Storhaug (MariusStorhaug) merged 4 commits intoOct 4, 2025
Merged
Conversation
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
…Module workflow to inherit secrets and use latest version
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request consolidates GitHub workflows and simplifies the CI/CD configuration by migrating from multiple specialized workflows to a single unified approach. The changes bump the Process-PSModule workflow to v5 and streamline automation.
- Consolidated scheduled and pull request workflows into a single Process-PSModule workflow
- Removed separate Nightly-Run and Linter workflows to reduce complexity
- Updated Dependabot configuration to improve PR labeling
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/Process-PSModule.yml | Updated to handle both scheduled and PR events, bumped to v5, and switched to inherited secrets |
| .github/workflows/Nightly-Run.yml | Removed as functionality moved to Process-PSModule workflow |
| .github/workflows/Linter.yml | Removed automated linting workflow |
| .github/linters/.jscpd.json | Removed JSCPD duplicate code detection configuration |
| .github/dependabot.yml | Added dependency and github-actions labels for better PR triage |
| .github/PSModule.yml | Added commented configuration options for potential future use |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
Module Net - 1.0.1 published to the PowerShell Gallery. |
|
GitHub release for Net v1.0.1 has been created. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request primarily updates and simplifies the repository's GitHub workflow and configuration files. The main changes include consolidating scheduled and pull request workflows, updating workflow calls to use newer versions and inherited secrets, removing unused linter and configuration files, and improving Dependabot labeling.
Workflow and CI/CD improvements:
.github/workflows/Process-PSModule.ymlworkflow now handles both scheduled (nightly) and pull request events, consolidating responsibilities previously split between multiple workflows. The workflow is also updated to useworkflow.yml@v5and inherits secrets instead of specifying them directly. [1] [2].github/workflows/Nightly-Run.ymlworkflow is removed, as its functionality is now handled by the updatedProcess-PSModule.ymlworkflow..github/workflows/Linter.ymlworkflow is removed, eliminating the automated linting step from the repository.Configuration and automation cleanup:
.github/linters/.jscpd.jsonconfiguration file is removed, indicating that duplicate code detection with JSCPD is no longer configured..github/PSModule.ymlfile is updated to skip several test and build steps, streamlining the module's CI process..github/dependabot.ymlconfiguration is updated to adddependenciesandgithub-actionslabels to PRs created by Dependabot, improving PR triage.