Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ updates:
- dependencies
- github-actions
schedule:
interval: weekly
interval: daily
cooldown:
default-days: 7
Comment on lines +14 to +16
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description focuses on updating the Dependabot schedule and adding a cooldown, but this branch also pins multiple GitHub Actions to specific commit SHAs in several workflows and removes .github/release.yml. Please confirm whether those additional changes are intentional for this PR or should be split/updated in the description so reviewers understand the full scope.

Copilot uses AI. Check for mistakes.
18 changes: 0 additions & 18 deletions .github/release.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/Action-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,43 +23,43 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# Upload artifact from tests:
- name: Upload artifact [PATH-Windows-TestResults]
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: PATH-Windows-TestResults
path: ./tests/TestResults/PATH-Windows-TestResults
retention-days: 1
if-no-files-found: error

- name: Upload artifact [PSModuleLint-Module-Windows-TestResults]
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: PSModuleLint-Module-Windows-TestResults
path: ./tests/TestResults/PSModuleLint-Module-Windows-TestResults
retention-days: 1
if-no-files-found: error

- name: Upload artifact [PSModuleLint-SourceCode-Windows-TestResults]
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: PSModuleLint-SourceCode-Windows-TestResults
path: ./tests/TestResults/PSModuleLint-SourceCode-Windows-TestResults
retention-days: 1
if-no-files-found: error

- name: Upload artifact [PSModuleTest-Module-Windows-TestResults]
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: PSModuleTest-Module-Windows-TestResults
path: ./tests/TestResults/PSModuleTest-Module-Windows-TestResults
retention-days: 1
if-no-files-found: error

- name: Upload artifact [PSModuleTest-SourceCode-Windows-TestResults]
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: PSModuleTest-SourceCode-Windows-TestResults
path: ./tests/TestResults/PSModuleTest-SourceCode-Windows-TestResults
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Auto-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Auto-Release
uses: PSModule/Auto-Release@v1
uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5

4 changes: 2 additions & 2 deletions .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

- name: Lint code base
uses: super-linter/super-linter@latest
uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
env:
GITHUB_TOKEN: ${{ github.token }}
VALIDATE_JSON_PRETTIER: false
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
using: composite
steps:
- name: Get-PesterTestResults
uses: PSModule/GitHub-Script@v1
uses: PSModule/GitHub-Script@2010983167dc7a41bcd84cb88e698ec18eccb7ca # v1.7.8
env:
PSMODULE_GET_PESTERTESTRESULTS_INPUT_SourceCodeTestSuites: ${{ inputs.SourceCodeTestSuites }}
PSMODULE_GET_PESTERTESTRESULTS_INPUT_PSModuleTestSuites: ${{ inputs.PSModuleTestSuites }}
Expand Down