diff --git a/.github/workflows/pester.yml b/.github/workflows/pester.yml index 3cf4dc1..2f41f55 100644 --- a/.github/workflows/pester.yml +++ b/.github/workflows/pester.yml @@ -16,7 +16,7 @@ jobs: os: [macos-latest, windows-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install dependencies run: Install-Module -Name 'Pester' -Force -SkipPublisherCheck shell: pwsh diff --git a/.github/workflows/publishtogallery.yml b/.github/workflows/publishtogallery.yml index e4fb35b..f919a99 100644 --- a/.github/workflows/publishtogallery.yml +++ b/.github/workflows/publishtogallery.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run publish script env: NuGetApiKey: ${{ secrets.NuGetApiKey }} diff --git a/.github/workflows/scriptanalyzer.yml b/.github/workflows/scriptanalyzer.yml index 297f970..be246a9 100644 --- a/.github/workflows/scriptanalyzer.yml +++ b/.github/workflows/scriptanalyzer.yml @@ -16,7 +16,7 @@ jobs: os: [windows-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install dependencies run: Install-Module -Name 'PSScriptAnalyzer' -Force -SkipPublisherCheck shell: pwsh diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fdcd28..706e220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [1.1.8] - 2026-06-24 + +### Changed + +- UofISplunkCloud.psm1 + - fixed path capitalization that was preventing the module from loading function in Linux +- Update GitHub actions for `checkout` + ## [1.1.7] - 2026-05-28 ### Changed diff --git a/src/UofISplunkCloud/UofISplunkCloud.psd1 b/src/UofISplunkCloud/UofISplunkCloud.psd1 index f6891b3..1dabfe8 100644 --- a/src/UofISplunkCloud/UofISplunkCloud.psd1 +++ b/src/UofISplunkCloud/UofISplunkCloud.psd1 @@ -10,7 +10,7 @@ RootModule = 'UofISplunkCloud.psm1' # Version number of this module. -ModuleVersion = '1.1.7' +ModuleVersion = '1.1.8' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/src/UofISplunkCloud/UofISplunkCloud.psm1 b/src/UofISplunkCloud/UofISplunkCloud.psm1 index 9714db3..4049771 100644 --- a/src/UofISplunkCloud/UofISplunkCloud.psm1 +++ b/src/UofISplunkCloud/UofISplunkCloud.psm1 @@ -1,4 +1,4 @@ -[String]$FunctionPath = Join-Path -Path $PSScriptRoot -ChildPath 'Functions' +[String]$FunctionPath = Join-Path -Path $PSScriptRoot -ChildPath 'functions' #All function files are executed while only public functions are exported to the shell. Get-ChildItem -Path $FunctionPath -Filter "*.ps1" -Recurse | ForEach-Object -Process { Write-Verbose -Message "Importing $($_.BaseName)"