Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/pester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publishtogallery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scriptanalyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/UofISplunkCloud/UofISplunkCloud.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
RootModule = 'UofISplunkCloud.psm1'

# Version number of this module.
ModuleVersion = '1.1.7'
ModuleVersion = '1.1.8'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion src/UofISplunkCloud/UofISplunkCloud.psm1
Original file line number Diff line number Diff line change
@@ -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)"
Expand Down
Loading