Skip to content

Commit e6a5ee7

Browse files
authored
Merge pull request #62 from JLarky/bump-checkout-action-v5
Bump actions/checkout helper from v4 to v5
2 parents 89aaa7f + 06a9e73 commit e6a5ee7

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/example-bun.generated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
exampleJob:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Test

.github/workflows/example-javascript.generated.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
selfCheck:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Install dependencies
1616
working-directory: .github/workflows
1717
run: npm install @jlarky/gha-ts typescript yaml
@@ -27,7 +27,7 @@ jobs:
2727
exampleJob:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
- name: Test

.github/workflows/example-node.generated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
exampleJob:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- name: Test

src/actions/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface CheckoutOptions {
3232
submodules?: boolean | "recursive";
3333
}
3434
export function checkout(options: CheckoutOptions = {}): UsesStep {
35-
return uses("actions/checkout@v4", buildWith(options));
35+
return uses("actions/checkout@v5", buildWith(options));
3636
}
3737

3838
// AddToProject action

tests/render-yaml.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
name: Test actions
120120
runs-on: macos-latest
121121
steps:
122-
- uses: actions/checkout@v4
122+
- uses: actions/checkout@v5
123123
- uses: actions/setup-go@v5
124124
with:
125125
go-version: 1.17.7

0 commit comments

Comments
 (0)