diff options
author | nea <romangraef@gmail.com> | 2022-10-21 19:54:57 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-10-21 19:54:57 +0200 |
commit | e7b513b5f4f8e41b2d207a74d9c0eeff6768436a (patch) | |
tree | 714392dd308687796bed2a881a2b21898b1e1776 /.github | |
parent | b3e35831f989f996b0f2ea3cd975a8a2ab57a3fd (diff) | |
parent | 2f57d3891a25630a41323c029bbe0b0a87d2fd33 (diff) | |
download | NotEnoughUpdates-e7b513b5f4f8e41b2d207a74d9c0eeff6768436a.tar.gz NotEnoughUpdates-e7b513b5f4f8e41b2d207a74d9c0eeff6768436a.tar.bz2 NotEnoughUpdates-e7b513b5f4f8e41b2d207a74d9c0eeff6768436a.zip |
Merge remote-tracking branch 'origin/master' into feature/buckets
Diffstat (limited to '.github')
-rw-r--r-- | .github/CODE_OF_CONDUCT.md | 3 | ||||
-rw-r--r-- | .github/workflows/build.yml | 8 | ||||
-rw-r--r-- | .github/workflows/infer.yml | 6 |
3 files changed, 8 insertions, 9 deletions
diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md deleted file mode 100644 index e91612f1..00000000 --- a/.github/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,3 +0,0 @@ -# Contributor Code of Conduct - -Don't be a jerk. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d6c2b23..d610b4d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,7 @@ on: - "COPYING" - "COPYING.LESSER" - ".gitignore" + - "Update Notes" pull_request: branches: - "*" @@ -17,6 +18,7 @@ on: - "COPYING" - "COPYING.LESSER" - ".gitignore" + - "Update Notes" workflow_dispatch: jobs: build: @@ -28,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Send discord notification id: sendmsg if: ${{ env.WEBHOOK_URL }} @@ -37,14 +39,14 @@ jobs: env: STATUS: WORKING - name: Set up JDK 17 - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: 17 distribution: temurin cache: gradle - name: Build with Gradle run: chmod +x ./gradlew && ./gradlew clean test remapJar --no-daemon - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: build/libs/*-dep.jar - name: Update discord notification diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml index 365e748b..7a035a42 100644 --- a/.github/workflows/infer.yml +++ b/.github/workflows/infer.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout feature with: ref: ${{ github.event.pull_request.head.sha }} - name: Set up JDK 17 - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: 17 distribution: temurin @@ -27,7 +27,7 @@ jobs: infer capture -- ./gradlew clean test --no-daemon infer analyze cp infer-out/report.json ciwork/report-feature.json - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout base with: ref: ${{ github.event.pull_request.base.sha }} |