Skip to content

Commit c5f8e5d

Browse files
Bump the dependencies group with 4 updates (#78)
Bumps the dependencies group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-java](https://github.com/actions/setup-java), [github/codeql-action](https://github.com/github/codeql-action) and [dorny/test-reporter](https://github.com/dorny/test-reporter). Updates `actions/checkout` from 3 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) Updates `actions/setup-java` from 3 to 4 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v3...v4) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) Updates `dorny/test-reporter` from 1 to 2 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](dorny/test-reporter@v1...v2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-java dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: github/codeql-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: dorny/test-reporter dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0cdefd6 commit c5f8e5d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,17 @@ jobs:
5252

5353
steps:
5454
- name: Checkout repository
55-
uses: actions/checkout@v3
55+
uses: actions/checkout@v5
5656

5757
- name: Install Java and Maven
58-
uses: actions/setup-java@v3
58+
uses: actions/setup-java@v4
5959
with:
6060
distribution: 'temurin' # See 'Supported distributions' for available options
6161
java-version: '17'
6262

6363
# Initializes the CodeQL tools for scanning.
6464
- name: Initialize CodeQL
65-
uses: github/codeql-action/init@v2
65+
uses: github/codeql-action/init@v3
6666
with:
6767
languages: ${{ matrix.language }}
6868
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -76,7 +76,7 @@ jobs:
7676
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
7777
# If this step fails, then you should remove it and run the build manually (see below)
7878
- name: Autobuild
79-
uses: github/codeql-action/autobuild@v2
79+
uses: github/codeql-action/autobuild@v3
8080

8181
# ℹ️ Command-line programs to run using the OS shell.
8282
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -89,6 +89,6 @@ jobs:
8989
# ./location_of_script_within_repo/buildscript.sh
9090

9191
- name: Perform CodeQL Analysis
92-
uses: github/codeql-action/analyze@v2
92+
uses: github/codeql-action/analyze@v3
9393
with:
9494
category: "/language:${{matrix.language}}"

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
checks: write
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v5
3030
- name: Set up JDK 17
31-
uses: actions/setup-java@v3
31+
uses: actions/setup-java@v4
3232
with:
3333
java-version: '17'
3434
distribution: 'temurin'
@@ -41,7 +41,7 @@ jobs:
4141
run: mvn clean install
4242

4343
- name: Test Report
44-
uses: dorny/test-reporter@v1
44+
uses: dorny/test-reporter@v2
4545
if: always()
4646
with:
4747
name: Test Results

0 commit comments

Comments
 (0)