Skip to content

Commit

Permalink
fixes #80 - added module name to action name
Browse files Browse the repository at this point in the history
  • Loading branch information
techthoughts2 committed May 5, 2024
1 parent 5ca6db2 commit 3bb9914
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.7.0]
## [2.8.0]

- Catesta template module changes
- CI/CD Changes:
Expand All @@ -24,12 +24,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `buildspec_pwsh_linux.yml` updated to dot net 8.
- `buildspec_pwsh_windows.yml` updated to dot net 8.
- AWS.Tools.Common bumped from `4.1.133` to `4.1.572`
- GitHub:
- Workflow actions now include the module name in the action name
- InvokeBuild bumped from `5.10.5` to `5.11.1`
- PSScriptAnalyzer bumped from `1.21.0` to `1.22.0`
- Catesta primary module changes
- Added additional tests for new AWS changes
- InvokeBuild bumped from `5.10.5` to `5.11.1`
- PSScriptAnalyzer bumped from `1.21.0` to `1.22.0`
- Documentation updates
- Updated README to use new badge urls for action builds

## [2.4.0]

Expand Down
2 changes: 1 addition & 1 deletion docs/Catesta.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Module Name: Catesta
Module Guid: 6796b193-9013-468a-b022-837749af2d06
Download Help Link: NA
Help Version: 2.7.0
Help Version: 2.8.0
Locale: en-US
---

Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Catesta.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Catesta.psm1'

# Version number of this module.
ModuleVersion = '2.7.0'
ModuleVersion = '2.8.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Resources/GitHubActions/workflows/wf_Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
# https://github.com/actions/upload-artifact#where-does-the-upload-go
name: ActionsTest-Linux-Build
name: <%=$PLASTER_PARAM_ModuleName%>-Linux
on:
pull_request:
paths-ignore:
Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Resources/GitHubActions/workflows/wf_MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
# https://github.com/actions/upload-artifact#where-does-the-upload-go
name: ActionsTest-MacOS-Build
name: <%=$PLASTER_PARAM_ModuleName%>-MacOS
on:
pull_request:
paths-ignore:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
# https://github.com/actions/upload-artifact#where-does-the-upload-go
name: ActionsTest-Windows-Build
name: <%=$PLASTER_PARAM_ModuleName%>-Windows-PowerShell
on:
pull_request:
paths-ignore:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
# https://github.com/actions/upload-artifact#where-does-the-upload-go
name: ActionsTest-Windows-pwsh-Build
name: <%=$PLASTER_PARAM_ModuleName%>-Windows-pwsh
on:
pull_request:
paths-ignore:
Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Resources/Module/plasterManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<metadata>
<name>Catesta</name>
<id>258a61ba-566b-4c3a-8230-c2b6861a1a8d</id>
<version>2.7.0</version>
<version>2.8.0</version>
<title>Catesta</title>
<description>Scaffolds a new PowerShell module project</description>
<author>Jake Morrison</author>
Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Resources/Vault/plasterManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<metadata>
<name>Catesta</name>
<id>d531e058-52b8-4dd2-8162-01c95d1eb8f7</id>
<version>2.7.0</version>
<version>2.8.0</version>
<title>Catesta</title>
<description>Scaffolds a new PowerShell SecretManagement extension vault module project</description>
<author>Jake Morrison</author>
Expand Down

0 comments on commit 3bb9914

Please sign in to comment.