Skip to content

Commit f1955d8

Browse files
authored
Merge pull request #210 from Philippus/update-actions
Update actions/checkout and al-cheb/configure-pagefile-action
2 parents 2b42a15 + d94ca2a commit f1955d8

10 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434

3535
- name: Configure pagefile for Windows
3636
if: contains(runner.os, 'windows')
37-
uses: al-cheb/configure-pagefile-action@v1.4
37+
uses: al-cheb/configure-pagefile-action@v1.5
3838
with:
3939
minimum-size: 2GB
4040
maximum-size: 8GB
4141
disk-root: 'C:'
4242

4343
- name: Checkout current branch (full)
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 0
4747

@@ -112,14 +112,14 @@ jobs:
112112

113113
- name: Configure pagefile for Windows
114114
if: contains(runner.os, 'windows')
115-
uses: al-cheb/configure-pagefile-action@v1.4
115+
uses: al-cheb/configure-pagefile-action@v1.5
116116
with:
117117
minimum-size: 2GB
118118
maximum-size: 8GB
119119
disk-root: 'C:'
120120

121121
- name: Checkout current branch (full)
122-
uses: actions/checkout@v5
122+
uses: actions/checkout@v6
123123
with:
124124
fetch-depth: 0
125125

src/main/scala/sbtghactions/WorkflowStep.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ sealed trait WorkflowStep extends Product with Serializable {
2929
}
3030

3131
object Action {
32-
val checkout = UseRef.Public("actions", "checkout", "v5")
32+
val checkout = UseRef.Public("actions", "checkout", "v6")
3333
val setupGraalvm = UseRef.Public("graalvm", "setup-graalvm", "v1")
3434
val setupJava = UseRef.Public("actions", "setup-java", "v5")
3535
val setupSbt = UseRef.Public("sbt", "setup-sbt", "v1")
3636
val tmate = UseRef.Public("mxschmitt", "action-tmate", "v2")
3737
val upload = UseRef.Public("actions", "upload-artifact", "v5")
3838
val download = UseRef.Public("actions", "download-artifact", "v6")
39-
val configurePagefile = UseRef.Public("al-cheb", "configure-pagefile-action", "v1.4")
39+
val configurePagefile = UseRef.Public("al-cheb", "configure-pagefile-action", "v1.5")
4040

4141
val all = Seq(checkout, setupGraalvm, setupJava, setupSbt, tmate, upload, download, configurePagefile)
4242
}

src/sbt-test/sbtghactions/allow-hashes/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ${{ matrix.os }}
7070
steps:
7171
- name: Checkout current branch (full)
72-
uses: actions/checkout@v5
72+
uses: actions/checkout@v6
7373
with:
7474
fetch-depth: 0
7575

src/sbt-test/sbtghactions/check-and-regenerate/expected-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout current branch (full)
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
fetch-depth: 0
4343

@@ -93,7 +93,7 @@ jobs:
9393

9494
steps:
9595
- name: Checkout current branch (full)
96-
uses: actions/checkout@v5
96+
uses: actions/checkout@v6
9797
with:
9898
fetch-depth: 0
9999

src/sbt-test/sbtghactions/githubworkflowoses-clean-publish/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333

3434
- name: Configure pagefile for Windows
3535
if: contains(runner.os, 'windows')
36-
uses: al-cheb/configure-pagefile-action@v1.4
36+
uses: al-cheb/configure-pagefile-action@v1.5
3737
with:
3838
minimum-size: 2GB
3939
maximum-size: 8GB
4040
disk-root: 'C:'
4141

4242
- name: Checkout current branch (full)
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646

@@ -91,14 +91,14 @@ jobs:
9191

9292
- name: Configure pagefile for Windows
9393
if: contains(runner.os, 'windows')
94-
uses: al-cheb/configure-pagefile-action@v1.4
94+
uses: al-cheb/configure-pagefile-action@v1.5
9595
with:
9696
minimum-size: 2GB
9797
maximum-size: 8GB
9898
disk-root: 'C:'
9999

100100
- name: Checkout current branch (full)
101-
uses: actions/checkout@v5
101+
uses: actions/checkout@v6
102102
with:
103103
fetch-depth: 0
104104

src/sbt-test/sbtghactions/no-clean/.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828
steps:
2929
- name: Checkout current branch (full)
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333

@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ${{ matrix.os }}
7070
steps:
7171
- name: Checkout current branch (full)
72-
uses: actions/checkout@v5
72+
uses: actions/checkout@v6
7373
with:
7474
fetch-depth: 0
7575

src/sbt-test/sbtghactions/non-existent-target/.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828
steps:
2929
- name: Checkout current branch (full)
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333

@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ${{ matrix.os }}
6969
steps:
7070
- name: Checkout current branch (full)
71-
uses: actions/checkout@v5
71+
uses: actions/checkout@v6
7272
with:
7373
fetch-depth: 0
7474

src/sbt-test/sbtghactions/sbt-native-thin-client/.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828
steps:
2929
- name: Checkout current branch (full)
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333

@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ${{ matrix.os }}
8686
steps:
8787
- name: Checkout current branch (full)
88-
uses: actions/checkout@v5
88+
uses: actions/checkout@v6
8989
with:
9090
fetch-depth: 0
9191

src/sbt-test/sbtghactions/suppressed-scala-version/expected-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
steps:
3030
- name: Checkout current branch (full)
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434

@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ${{ matrix.os }}
7171
steps:
7272
- name: Checkout current branch (full)
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
with:
7575
fetch-depth: 0
7676

src/test/scala/sbtghactions/GenerativePluginSpec.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ class GenerativePluginSpec extends Specification {
516516
- run: echo hello
517517

518518
- name: Checkout current branch (fast)
519-
uses: actions/checkout@v5"""
519+
uses: actions/checkout@v6"""
520520
}
521521

522522
"compile a job with one step and three oses" in {
@@ -777,7 +777,7 @@ class GenerativePluginSpec extends Specification {
777777
- run: echo $${{ matrix.test }}
778778

779779
- name: Checkout current branch (fast)
780-
uses: actions/checkout@v5"""
780+
uses: actions/checkout@v6"""
781781
}
782782

783783
"compile a job with extra runs-on labels" in {
@@ -1000,7 +1000,7 @@ class GenerativePluginSpec extends Specification {
10001000
- run: echo hello
10011001

10021002
- name: Checkout current branch (fast)
1003-
uses: actions/checkout@v5"""
1003+
uses: actions/checkout@v6"""
10041004
}
10051005
}
10061006

0 commit comments

Comments
 (0)