-
Notifications
You must be signed in to change notification settings - Fork 3
Bumping versions #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bumping versions #16
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,13 +11,13 @@ jobs: | |
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| with: | ||
| submodules: true | ||
| - name: Set up JDK 17 | ||
| - name: Set up JDK 21 | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| java-version: '17' | ||
| java-version: '21' | ||
| distribution: 'zulu' | ||
|
Comment on lines
+17
to
21
|
||
| cache: maven | ||
| - name: Set up Maven | ||
|
|
@@ -32,12 +32,12 @@ jobs: | |
| uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 | ||
|
|
||
| - name: Upload Enterprise | ||
| uses: actions/upload-artifact@v4 | ||
| uses: actions/upload-artifact@v6 | ||
| with: | ||
|
Comment on lines
34
to
36
|
||
| name: EnterpriseAnticheat | ||
| path: Anticheat/target/AntiCheat-*.jar | ||
| - name: Upload API | ||
| uses: actions/upload-artifact@v4 | ||
| uses: actions/upload-artifact@v6 | ||
| with: | ||
|
Comment on lines
39
to
41
|
||
| name: API | ||
| path: API/target/API-*.jar | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This workflow mixes a SHA-pinned action (maven-dependency-submission-action) with tag-based actions. For supply-chain hardening, consider pinning actions/checkout to a specific commit SHA as well (or otherwise document why tags are acceptable here).