Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed Jan 15, 2024
1 parent b6cbd2d commit 6af7742
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ runs:
uses: "hugoalh-studio/[email protected]"
with:
sudo: "${{inputs.operate_sudo}}"
version: "^1.7.2"
version: "^2.1.0"
scope: "AllUsers"
keepsetting: "False"
continue-on-error: true
Expand All @@ -108,7 +108,7 @@ runs:
uses: "hugoalh-studio/[email protected]"
with:
sudo: "${{inputs.operate_sudo}}"
version: "^1.7.2"
version: "^2.1.0"
scope: "CurrentUser"
keepsetting: "False"
continue-on-error: true
Expand Down
8 changes: 4 additions & 4 deletions main.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,16 @@ Function Get-DiskSpace {
Format-List |
Out-String -Width 120 |
Write-GitHubActionsDebug
[String]$InputGeneralInclude = ((Get-GitHubActionsInput -Name 'general_include' -EmptyStringAsNull) ?? '') -isplit '\r?\n' |
[String]$InputGeneralInclude = ((Get-GitHubActionsInput -Name 'general_include') ?? '') -isplit '\r?\n' |
Where-Object -FilterScript { $_.Length -gt 0 } |
Join-String -Separator '|'
[String]$InputGeneralExclude = ((Get-GitHubActionsInput -Name 'general_exclude' -EmptyStringAsNull) ?? '') -isplit '\r?\n' |
[String]$InputGeneralExclude = ((Get-GitHubActionsInput -Name 'general_exclude') ?? '') -isplit '\r?\n' |
Where-Object -FilterScript { $_.Length -gt 0 } |
Join-String -Separator '|'
[String]$InputDockerInclude = ((Get-GitHubActionsInput -Name 'docker_include' -EmptyStringAsNull) ?? '') -isplit '\r?\n' |
[String]$InputDockerInclude = ((Get-GitHubActionsInput -Name 'docker_include') ?? '') -isplit '\r?\n' |
Where-Object -FilterScript { $_.Length -gt 0 } |
Join-String -Separator '|'
[String]$InputDockerExclude = ((Get-GitHubActionsInput -Name 'docker_exclude' -EmptyStringAsNull) ?? '') -isplit '\r?\n' |
[String]$InputDockerExclude = ((Get-GitHubActionsInput -Name 'docker_exclude') ?? '') -isplit '\r?\n' |
Where-Object -FilterScript { $_.Length -gt 0 } |
Join-String -Separator '|'
[Boolean]$InputAptClean = [Boolean]::Parse($Env:INPUT_APT_CLEAN)
Expand Down

0 comments on commit 6af7742

Please sign in to comment.