Skip to content

Commit 331d9de

Browse files
Merge branch 'dev/feature' into feature/command-rework
2 parents c9d73b1 + 88ffe0d commit 331d9de

130 files changed

Lines changed: 4169 additions & 1435 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/archive-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
echo "DOCS_REPO_DIR=${GITHUB_WORKSPACE}/skript-docs" >> $GITHUB_OUTPUT
1919
echo "SKRIPT_REPO_DIR=${GITHUB_WORKSPACE}/skript" >> $GITHUB_OUTPUT
2020
- name: Checkout Skript
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222
with:
2323
submodules: recursive
2424
path: skript

.github/workflows/checkstyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
with:
1717
submodules: recursive
1818
- name: validate gradle wrapper

.github/workflows/cleanup-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
echo "DOCS_OUTPUT_DIR=${GITHUB_WORKSPACE}/skript-docs/docs/nightly/${BRANCH_NAME}" >> $GITHUB_OUTPUT
1616
echo "DOCS_REPO_DIR=${GITHUB_WORKSPACE}/skript-docs" >> $GITHUB_OUTPUT
1717
- name: Checkout Skript
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919
with:
2020
ref: ${{ github.event.repository.default_branch }}
2121
submodules: recursive

.github/workflows/java-21-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
submodules: recursive
3030
- name: validate gradle wrapper

.github/workflows/java-25-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
submodules: recursive
3030
- name: validate gradle wrapper
@@ -40,7 +40,7 @@ jobs:
4040
- name: Build Skript and run test scripts
4141
run: ./gradlew clean customTest -PtestEnvs="${{ matrix.envs }}" -PtestEnvJavaVersion=25
4242
- name: Upload Nightly Build
43-
uses: actions/upload-artifact@v6
43+
uses: actions/upload-artifact@v7
4444
if: success() && matrix.id == 1
4545
with:
4646
name: skript-nightly

.github/workflows/junit-21-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
submodules: recursive
3030
- name: validate gradle wrapper

.github/workflows/junit-25-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
submodules: recursive
3030
- name: validate gradle wrapper

.github/workflows/nightly-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "DOCS_REPO_DIR=${GITHUB_WORKSPACE}/skript-docs" >> $GITHUB_OUTPUT
2424
echo "SKRIPT_REPO_DIR=${GITHUB_WORKSPACE}/skript" >> $GITHUB_OUTPUT
2525
- name: Checkout Skript
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727
with:
2828
submodules: recursive
2929
path: skript

.github/workflows/release-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo "DOCS_REPO_DIR=${GITHUB_WORKSPACE}/skript-docs" >> $GITHUB_OUTPUT
2020
echo "SKRIPT_REPO_DIR=${GITHUB_WORKSPACE}/skript" >> $GITHUB_OUTPUT
2121
- name: Checkout Skript
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323
with:
2424
submodules: recursive
2525
path: skript

.github/workflows/repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/checkout@v7
1212
with:
1313
submodules: recursive
1414
- name: validate gradle wrapper

0 commit comments

Comments
 (0)