Skip to content

Commit d2a1716

Browse files
authored
Merge pull request #1534 from rafi67000/workflowUpdate
Workflow update
2 parents 046f653 + 424f9f3 commit d2a1716

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v6
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v1
42+
uses: github/codeql-action/init@v2
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v1
53+
uses: github/codeql-action/autobuild@v2
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v1
67+
uses: github/codeql-action/analyze@v2

.github/workflows/gradle-publish.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
contents: read
1111

1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414

1515
- name: Validate gradle wrapper
16-
uses: gradle/actions/wrapper-validation@v5
16+
uses: gradle/actions/wrapper-validation@v6
1717

1818
- name: Set up JDK 21
1919
uses: actions/setup-java@v5
@@ -28,43 +28,43 @@ jobs:
2828
run: chmod +x gradlew && ./gradlew build
2929

3030
- name: Upload build artifacts api
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v7
3232
with:
3333
name: api-build
3434
path: build/libs/packetevents-api-*.jar
3535

3636
- name: Upload build artifacts spigot
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v7
3838
with:
3939
name: spigot-build
4040
path: build/libs/packetevents-spigot-*.jar
4141

4242
- name: Upload build artifacts netty-common
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: netty-common-build
4646
path: build/libs/packetevents-netty-common-*.jar
4747

4848
- name: Upload build artifacts bungeecord
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v7
5050
with:
5151
name: bungeecord-build
5252
path: build/libs/packetevents-bungeecord-*.jar
5353

5454
- name: Upload build artifacts velocity
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v7
5656
with:
5757
name: velocity-build
5858
path: build/libs/packetevents-velocity-*.jar
5959

6060
- name: Upload build artifacts fabric
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v7
6262
with:
6363
name: fabric-build
6464
path: build/libs/packetevents-fabric-*.jar
6565

6666
- name: Upload build artifacts sponge
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v7
6868
with:
6969
name: sponge-build
7070
path: build/libs/packetevents-sponge-*.jar

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Validate gradle wrapper
18-
uses: gradle/actions/wrapper-validation@v5
18+
uses: gradle/actions/wrapper-validation@v6
1919

2020
- name: Setup java 21
2121
uses: actions/setup-java@v5

0 commit comments

Comments
 (0)