Skip to content

Commit 1c8063d

Browse files
committed
[gha] Update actions
1 parent f59d628 commit 1c8063d

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.github/workflows/codeql.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ jobs:
2222
contents: read
2323
security-events: write
2424

25-
strategy:
26-
fail-fast: false
27-
matrix:
28-
language: [ javascript, java, kotlin ]
29-
3025
steps:
3126
- name: Checkout
3227
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
@@ -41,13 +36,10 @@ jobs:
4136
- name: Initialize CodeQL
4237
uses: github/codeql-action/init@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4
4338
with:
44-
languages: ${{ matrix.language }}
4539
queries: +security-and-quality
4640

4741
- name: Autobuild
4842
uses: github/codeql-action/autobuild@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4
4943

5044
- name: Perform CodeQL Analysis
5145
uses: github/codeql-action/analyze@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4
52-
with:
53-
category: "/language:${{ matrix.language }}"

.github/workflows/coveralls.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
run: ./mvnw test --batch-mode --no-transfer-progress --quiet --show-version -Dlicense.skip=true
2626
- name: Report Coverage to Coveralls for Pull Requests
2727
if: github.event_name == 'pull_request'
28-
run: ./mvnw jacoco:report coveralls:report --batch-mode --no-transfer-progress -DpullRequest=${PR_NUMBER} -DrepoToken=${GITHUB_TOKEN} -DserviceName=github
28+
run: ./mvnw generate-sources jacoco:report coveralls:report --batch-mode --no-transfer-progress -DpullRequest=${{ env.PR_NUMBER }} -DrepoToken=${{ env.GITHUB_TOKEN }} -DserviceName=github
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
PR_NUMBER: ${{ github.event.number }}
3232
- name: Report Coverage to Coveralls for General Push
3333
if: github.event_name == 'push'
34-
run: ./mvnw generate-sources jacoco:report coveralls:report --batch-mode --no-transfer-progress -DrepoToken=${GITHUB_TOKEN} -DserviceName=github
34+
run: ./mvnw generate-sources jacoco:report coveralls:report --batch-mode --no-transfer-progress -DrepoToken=${{ env.GITHUB_TOKEN }} -DserviceName=github
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/it-maven-4.0.0.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Java Integration Tests Maven 4.0.0-rc-4
1+
name: Java Integration Tests Maven 4.0.0-rc-5
22

33
on: [push, pull_request]
44

@@ -9,13 +9,13 @@ concurrency:
99
cancel-in-progress: true
1010

1111
env:
12-
maven-version: 4.0.0-rc-4
12+
maven-version: 4.0.0-rc-5
1313

1414
jobs:
1515
test:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 30
18-
name: Integration Tests Maven 4.0.0-rc-4 with java 25
18+
name: Integration Tests Maven 4.0.0-rc-5 with java 25
1919

2020
steps:
2121
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6

0 commit comments

Comments
 (0)