Skip to content

Commit

Permalink
Increase timeout for windows configure-pagefile
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed May 29, 2023
1 parent fc7fd20 commit a6211fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,11 @@ jobs:

- name: Configure Windows Pagefile
if: matrix.os == 'windows-latest'
uses: al-cheb/configure-pagefile-action@v1.3
uses: al-cheb/configure-pagefile-action@d298bdee6b133626425040e3788f1055a8b4cf7a
with:
minimum-size: 2GB
maximum-size: 8GB
timeout: 600

- name: Check that workflows are up to date
shell: bash
Expand Down
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,12 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq(
cond = Some(s"matrix.java == '${GraalVM.render}'")
),
WorkflowStep.Use(
UseRef.Public("al-cheb", "configure-pagefile-action", "v1.3"),
UseRef.Public(
"al-cheb",
"configure-pagefile-action",
"d298bdee6b133626425040e3788f1055a8b4cf7a"),
name = Some("Configure Windows Pagefile"),
params = Map("minimum-size" -> "2GB", "maximum-size" -> "8GB"),
params = Map("minimum-size" -> "2GB", "maximum-size" -> "8GB", "timeout" -> "600"),
cond = Some(s"matrix.os == '$Windows'")
)
)
Expand Down

0 comments on commit a6211fa

Please sign in to comment.