Skip to content

Commit 83d2166

Browse files
authored
Merge pull request #294 from gdcc/renovate/actions-checkout-5.x
chore(deps): update actions/checkout action to v5
2 parents b0a54fd + f9cf5c9 commit 83d2166

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build_test_analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Build
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1515
- name: Set up JDK 17

.github/workflows/maven-release-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# We need write permission so we can push the next snapshot version
1515
contents: write
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- run: |
1919
git config user.name "github-actions[bot]"
2020
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

.github/workflows/maven-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- if: ${{ github.event_name == 'push' }}
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- if: ${{ inputs.version }}
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: "${{ inputs.version }}"
2222
# Alternative command if we just inherit the jdk.version from the parent (grep is faster):

.github/workflows/maven-security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
permissions:
1414
security-events: write
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Maven Central Repository
1818
uses: actions/setup-java@v4
1919
with:

.github/workflows/maven-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
java: [17]
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Set up Maven Central Repository
1616
uses: actions/setup-java@v4
1717
with:

.github/workflows/tck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: OAI-PMH Validator
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1515
- name: Set up JDK 17

0 commit comments

Comments
 (0)