Skip to content

Commit ebced46

Browse files
authored
Merge pull request #19 from igniterealtime/dependabot/github_actions/github-actions-0924709c20
Bump the github-actions group with 3 updates
2 parents e9e24ee + 9410d7e commit ebced46

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)