Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@ name: "Set theme labels"
on:
- pull_request_target

permissions:
contents: read

jobs:
triage:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/labeler@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/labels-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ on:
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]

permissions:
contents: none

jobs:
triage:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- uses: baev/action-label-verify@main
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [ published ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ on:
description: "The next version in <MAJOR>.<MINOR> format WITHOUT SNAPSHOT SUFFIX"
required: true

permissions:
contents: read

jobs:
triage:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: "Check release version"
run: |
Expand Down
8 changes: 5 additions & 3 deletions allure-grpc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ description = "Allure gRPC Integration"

val agent: Configuration by configurations.creating

val grpcVersion = "1.57.2"
val protobufVersion = "4.27.3"
val grpcVersion = "1.75.0"
val protobufVersion = "4.32.1"
val jacksonVersion = "2.17.2"

dependencies {
agent("org.aspectj:aspectjweaver")
api(project(":allure-attachments"))
compileOnly("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion")
compileOnly("com.google.protobuf:protobuf-java-util:$protobufVersion")
compileOnly("io.grpc:grpc-core:$grpcVersion")
compileOnly("io.grpc:grpc-api:$grpcVersion")
testImplementation("com.google.protobuf:protobuf-java-util:$protobufVersion")
testImplementation("com.google.protobuf:protobuf-java:$protobufVersion")
testImplementation("io.grpc:grpc-core:$grpcVersion")
Expand Down
Loading
Loading