Skip to content

Commit db95aa0

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent db58e14 commit db95aa0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/apiary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout master branch
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Install drafter
2121
run: npm install drafter
2222
- name: Build

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
2020
steps:
2121
- name: Checkout master branch
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
- name: Set up JDK
@@ -34,7 +34,7 @@ jobs:
3434
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3535
restore-keys: ${{ runner.os }}-m2
3636
- name: Checkout Universal ctags
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
repository: universal-ctags/ctags
4040
path: ctags

.github/workflows/codeql-analysis.yml

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

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: Set up JDK 17
2626
uses: actions/setup-java@v4
2727
with:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
shell: bash
1515
run: env
1616
- name: Checkout master branch
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.10'

.github/workflows/javadoc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout master branch
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Set up JDK
2222
uses: actions/setup-java@v4
2323
with:
@@ -31,7 +31,7 @@ jobs:
3131
restore-keys: ${{ runner.os }}-m2
3232
- name: Checkout gh-pages branch
3333
if: github.repository == 'oracle/opengrok'
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
ref: gh-pages
3737
path: gh-pages

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout master branch
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Get the tag name
1818
id: get_tag
1919
env:
@@ -24,7 +24,7 @@ jobs:
2424
needs: get_tag
2525
steps:
2626
- name: Checkout master branch
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Set up JDK
2929
uses: actions/setup-java@v4
3030
with:
@@ -37,7 +37,7 @@ jobs:
3737
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3838
restore-keys: ${{ runner.os }}-m2
3939
- name: Checkout Universal ctags
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
with:
4242
repository: universal-ctags/ctags
4343
path: ctags

0 commit comments

Comments
 (0)