Skip to content

Commit 9410d7e

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e9e24ee commit 9410d7e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
java: [ 11, 17 ]
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Set up JDK ${{ matrix.java }}
2020
uses: actions/setup-java@v5
2121
with:
2222
distribution: temurin
2323
java-version: ${{ matrix.java }}
2424
- name: Cache Maven repository
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: ~/.m2/repository
2828
key: ${{ runner.os }}-java${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build with Maven
3333
run: mvn -B package --file pom.xml
3434
- name: Upload distribution
35-
uses: actions/upload-artifact@v5
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: distribution-java${{ matrix.java }}
3838
path: target/botz-*.jar
@@ -59,7 +59,7 @@ jobs:
5959
if: ${{github.repository == 'igniterealtime/Botz' && github.event_name == 'push' && ( needs.check_branch.outputs.is_publishable_branch == 'true' || contains(github.ref, 'refs/tags/') ) }}
6060

6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363
with:
6464
# Defend against another commit quickly following the first
6565
# We want the one that's been tested, rather than the head of main
@@ -79,7 +79,7 @@ jobs:
7979
echo "rel_id is '$rel_id'"
8080
8181
- name: Cache Maven repository
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: ~/.m2/repository
8585
key: ${{ runner.os }}-java11-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)