Skip to content

Releases: PSModule/Template-Action

v0.0.12

22 Jan 16:38
1e63abf

Choose a tag to compare

🩹 [Patch]: Pin GitHub Actions to specific versions for improved security (#23)

GitHub Actions are now pinned to specific commit SHAs instead of version tags, improving security by preventing supply chain attacks through tag manipulation. Additionally, Dependabot has been configured to run daily with a 7-day cooldown to keep dependencies up-to-date automatically.

GitHub Actions SHA pinning

All workflow files now reference actions by their full commit SHA rather than version tags. This ensures workflows always use a verified, immutable version of each action.

Changed actions:

  • actions/checkout@v5actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 (v6.0.1)
  • PSModule/Auto-Release@v1PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 (v1.9.5)
  • super-linter/super-linter@latestsuper-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 (v8.3.2)
  • PSModule/GitHub-Script@v1PSModule/GitHub-Script@2010983167dc7a41bcd84cb88e698ec18eccb7ca (v1.7.8)

Dependabot configuration

Dependabot now checks for updates daily with a 7-day cooldown between updates, replacing the previous weekly schedule. This provides faster awareness of security updates while avoiding excessive noise.

schedule:
  interval: daily
cooldown:
  default-days: 7

Linter configuration

Added configuration to disable validation checks that are not applicable to this repository:

  • VALIDATE_BIOME_FORMAT: false
  • VALIDATE_JSCPD: false

v0.0.11

22 Jan 15:32
d75bdec

Choose a tag to compare

🩹 [Patch]: Pin GitHub-Script action to specific version (#21)

The GitHub-Script action is now pinned to a specific SHA version for improved security and consistency.

Pin GitHub-Script action

Updated the action reference from version tag to specific SHA:

  • PSModule/GitHub-Script2010983167dc7a41bcd84cb88e698ec18eccb7ca (v1.7.8)

This ensures the action version is locked and cannot be changed without updating the SHA, preventing supply chain attacks.

v0.0.10

22 Jan 15:16
40cd161

Choose a tag to compare

🩹[Patch]: Update dependabot schedule and pin actions to SHA (#19)

Dependabot now checks for updates daily with a 7-day cooldown period, reducing noise while maintaining timely security updates. All GitHub Actions are pinned to specific commit SHAs with version comments for enhanced security and reproducibility.

Dependabot Configuration

Updated the schedule from weekly to daily with a cooldown of 7 days. This means Dependabot will check for updates daily but will wait 7 days after a new version is released before creating a PR, helping to avoid early adoption of potentially unstable releases.

schedule:
  interval: daily
cooldown:
  default-days: 7

Pinned Actions

All actions are now pinned to specific commit SHAs with version tag comments for traceability:

Action Version Commit SHA
actions/checkout v6.0.1 8e8c483db84b4bee98b60c0593521ed34d9990e8
super-linter/super-linter v8.3.2 d5b0a2ab116623730dd094f15ddc1b6b25bf7b99
PSModule/Auto-Release v1.9.5 eabd533035e2cb9822160f26f2eda584bd012356

v0.0.9

22 Jan 15:06
82045fd

Choose a tag to compare

Disable Biome format linter in super-linter (#18)

Disables the Biome format linter in the super-linter workflow.

Changes

  • Added VALIDATE_BIOME_FORMAT: false to .github/workflows/Linter.yml environment variables

This prevents Biome's formatter from running during CI linting while keeping other linters active (Prettier for JSON/Markdown/YAML remains disabled as before).

Original prompt

Disable the Biome format linter


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

v0.0.8

06 Jan 23:41
9820fd8

Choose a tag to compare

Add cooldown configuration to dependabot config for Zizmor compliance (#16)

This pull request updates the Dependabot configuration to increase the frequency of dependency update checks and introduces a cooldown period to help manage update noise.

Dependabot configuration changes:

  • Changed the update schedule interval from weekly to daily in .github/dependabot.yml.
  • Added a cooldown setting with default-days: 7 to limit how often Dependabot will open new pull requests for the same dependency.

v0.0.7

06 Jan 23:29
361d095

Choose a tag to compare

Bump PSModule/GitHub-Script from 1.7.3 to 1.7.6 (#9)

Bumps PSModule/GitHub-Script from 1.7.3 to 1.7.6.

Release notes

Sourced from PSModule/GitHub-Script's releases.

v1.7.6

Bumps azure/login from v2.2.0 to v2.3.0 (#70)

Bumps azure/login from v2.2.0 to v2.3.0.

Changes

  • Updated version comment to use patch-level semver (# v2.3.0 instead of # v2)
  • Updated PR title and description to reference semver versions
# Before
uses: azure/login@1384c340ab2dda50fed2bee3041d1d87018aa5e8 # v2
After
uses: azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2.3.0


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

v1.7.5

Bump super-linter/super-linter from 8.2.1 to 8.3.0 (#69)

Bumps super-linter/super-linter from 8.2.1 to 8.3.0.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v0.0.6

06 Jan 22:28
4f5c7a8

Choose a tag to compare

Bump actions/checkout from 6.0.0 to 6.0.1 (#10)

Bumps actions/checkout from 6.0.0 to 6.0.1.

Release notes

Sourced from actions/checkout's releases.

v6.0.1

What's Changed

Full Changelog: actions/checkout@v6...v6.0.1

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

v0.0.5

06 Jan 22:19
3a8ccec

Choose a tag to compare

Bump super-linter/super-linter from 8.2.1 to 8.3.2 (#12)

Bumps super-linter/super-linter from 8.2.1 to 8.3.2.

Release notes

Sourced from super-linter/super-linter's releases.

v8.3.2

8.3.2 (2025-12-24)

🐛 Bugfixes

⬆️ Dependency updates

  • bundler: bump rubocop in /dependencies in the rubocop group (#7313) (7fab96c)
  • docker: bump clj-kondo/clj-kondo in the docker group (#7325) (fa23c54)
  • docker: bump the docker group with 4 updates (#7318) (dc49a6d)
  • java: bump com.puppycrawl.tools:checkstyle (#7312) (ab58437)
  • npm: bump next from 16.0.10 to 16.1.0 in /dependencies (#7316) (a8572e2)
  • npm: bump renovate (#7300) (191338a)
  • npm: bump the npm group across 1 directory with 10 updates (#7322) (24d9e00)
  • npm: bump the npm group across 1 directory with 2 updates (#7296) (0697485)
  • npm: bump the npm group across 1 directory with 2 updates (#7301) (4b2bf76)
  • npm: bump the npm group across 1 directory with 4 updates (#7327) (07e73d6)
  • python: bump ansible-lint (#7326) (47962ea)
  • python: bump snakemake (#7295) (3f92589)
  • python: bump the pip group across 1 directory with 2 updates (#7299) (0ca0315)
  • python: bump the pip group across 1 directory with 6 updates (#7317) (ae7e8d8)

🧰 Maintenance

v8.3.1

8.3.1 (2025-12-15)

🐛 Bugfixes

⬆️ Dependency updates

... (truncated)

Changelog

Sourced from super-linter/super-linter's changelog.

Changelog

8.3.2 (2025-12-24)

🐛 Bugfixes

⬆️ Dependency updates

  • bundler: bump rubocop in /dependencies in the rubocop group (#7313) (7fab96c)
  • docker: bump clj-ko...
Read more

v0.0.4

26 Nov 12:34
5877769

Choose a tag to compare

Bump actions/checkout from 5 to 6 (#5)

Bumps actions/checkout from 5 to 6.

Release notes

Sourced from actions/checkout's releases.

v6.0.0

What's Changed

Full Changelog: actions/checkout@v5.0.0...v6.0.0

v6-beta

What's Changed

Updated persist-credentials to store the credentials under $RUNNER_TEMP instead of directly in the local git config.

This requires a minimum Actions Runner version of v2.329.0 to access the persisted credentials for Docker container action scenarios.

v5.0.1

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

V6.0.0

V5.0.1

V5.0.0

V4.3.1

V4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

v4.1.5

... (truncated)

Commits

[Dependabot compatibility score](https://docs.github.com/en/github/managing-security-vulnerabilities/about-de...

Read more

v0.0.3

12 Oct 12:26
382f64c

Choose a tag to compare

🩹 [Patch]: Encode all PowerShell files using UTF8 with BOM (#4)

Description

This pull request makes a minor formatting update to the scripts/main.ps1 file by adding a Unicode Byte Order Mark (BOM) at the beginning of the file. This change helps ensure proper encoding detection by some editors and tools.