Skip to content

Commit 5760058

Browse files
authored
Merge pull request #395 from elimu-ai/dependabot/github_actions/actions/checkout-5
build(deps): bump actions/checkout from 4 to 5
2 parents eb0f583 + 43ca687 commit 5760058

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/connected-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Enable KVM
2020
run: |

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
java: [17, 21]
1515
runs-on: ${{ matrix.os }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: actions/setup-java@v4
1919
with:
2020
distribution: temurin

.github/workflows/gradle-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: actions/setup-java@v4
1515
with:
1616
distribution: temurin

.github/workflows/gradle-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
create_git_tag:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- uses: actions/setup-java@v4
1313
with:
1414
distribution: temurin
@@ -89,7 +89,7 @@ jobs:
8989
run: echo "tagName ${{ needs.create_git_tag.outputs.tagName }}"
9090

9191
- name: Checkout refs/tags/${{ needs.create_git_tag.outputs.tagName }}
92-
uses: actions/checkout@v4
92+
uses: actions/checkout@v5
9393
with:
9494
ref: refs/tags/${{ needs.create_git_tag.outputs.tagName }}
9595

0 commit comments

Comments
 (0)