Skip to content

Commit

Permalink
Merge pull request #72 from one-project-one-month/dependabot/github_a…
Browse files Browse the repository at this point in the history
…ctions/actions/cache-4

[dependabot] github actions: Bump actions/cache from 3 to 4
  • Loading branch information
sannlynnhtun-coding authored Sep 8, 2024
2 parents d9f154d + 25eff46 commit 907e587
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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);
}
}

0 comments on commit 907e587

Please sign in to comment.