Skip to content

Commit 210fc4f

Browse files
authored
Merge pull request #114 from elimu-ai/dependabot/github_actions/actions/checkout-5
build(deps): bump actions/checkout from 4 to 5
2 parents 41a63d4 + 1dfc445 commit 210fc4f

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.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
@@ -9,7 +9,7 @@ jobs:
99
create_git_tag:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: actions/setup-java@v4
1414
with:
1515
distribution: temurin
@@ -88,7 +88,7 @@ jobs:
8888
run: echo "tagName ${{ needs.create_git_tag.outputs.tagName }}"
8989

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

0 commit comments

Comments
 (0)