Skip to content

Commit f81ee50

Browse files
committed
fix(GitHub Workflows): Bumps actions/checkout from 4 to 5
1 parent d499322 commit f81ee50

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414

1515
- name: Checking out the repo
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0 # needed for semantic-release
1919
ref: main

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828

2929
- name: Checking out the repo
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
ref: main
3333

{{repo_name}}/.github/workflows/ci-cd.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
{%- macro checkout(depth=1, ref="main") -%}
4040
- name: Checking out the repo
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
with: {%- if depth != 1 +%}
4343
fetch-depth: {{ depth }}
4444
{%- endif +%}

{{repo_name}}/.github/workflows/coverage.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Checkout documentation pages branch
8282
if: {{"${{ github.ref == 'refs/heads/main' }}"}}
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v5
8484
with:
8585
ref: gh-pages
8686
path: pages

0 commit comments

Comments
 (0)