Skip to content

Commit e0ea225

Browse files
authored
Merge pull request #1542 from playframework/dependabot/github_actions/actions/checkout-6
chore(deps): bump actions/checkout from 5 to 6
2 parents 679c30c + d64c1c9 commit e0ea225

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
name: Build / Tests -> JDK-${{ matrix.jdk }}/ Target java-${{ matrix.target }} / ${{ matrix.os }}
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
4343
fetch-depth: 0
@@ -68,7 +68,7 @@ jobs:
6868
name: BUILD ${{ github.sha }}
6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@v5
71+
uses: actions/checkout@v6
7272
with:
7373
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
7474
fetch-depth: 0
@@ -111,7 +111,7 @@ jobs:
111111

112112
steps:
113113
- name: Checkout
114-
uses: actions/checkout@v5
114+
uses: actions/checkout@v6
115115
with:
116116
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
117117
fetch-depth: 0

.github/workflows/codeql.yml

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

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Set up JDK ${{ env.DEFAULT_JAVA_VERSION }}
4242
uses: actions/setup-java@v5

.github/workflows/delete-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Delete unneeded caches
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- run: |
2121
gh cache list --limit 500 --order asc --sort last_accessed_at | grep 'play-published-local' > caches.txt || true
2222
echo "Found $(wc -l < caches.txt | xargs) published local cache entries"

0 commit comments

Comments
 (0)