Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dependabot] github actions: Bump actions/cache from 3 to 4 #72

Merged
merged 2 commits into from
Sep 8, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ jobs:
fetch-depth: 0

- name: Cache SonarCloud packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~\sonar\cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .\.sonar\scanner
key: ${{ runner.os }}-sonar-scanner
Expand Down
4 changes: 2 additions & 2 deletions REMS.BackendApi/Features/Agent/AgentController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ public async Task<IActionResult> SearchAgentByNameAndLocation(SearchAgentRequest
return Ok(agentList);
}

[HttpGet("{pageNumber}/{pageSize}",Name = "AgentAll")]
[HttpGet("{pageNumber}/{pageSize}", Name = "AgentAll")]
public async Task<IActionResult> AgentAll(int pageNumber, int pageSize)
{
Result<AgentListResponseModel> agentList = await _blAgent.AgentAll(pageNumber,pageSize);
Result<AgentListResponseModel> agentList = await _blAgent.AgentAll(pageNumber, pageSize);

return Ok(agentList);
}
Expand Down
2 changes: 1 addition & 1 deletion REMS.Modules/Features/Agent/BL_Agent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public async Task<Result<AgentListResponseModel>> SearchAgentByNameAndLocationAs

public async Task<Result<AgentListResponseModel>> AgentAll(int pageNumber, int pageSize)
{
return await _daAgent.AgentAllAsync(pageNumber,pageSize);
return await _daAgent.AgentAllAsync(pageNumber, pageSize);
}
}