confirmed ignoring `runtime-internal` suppresses the really old guava, the `scala-doc-tool` and `scala-tool` configs currently don't pull in any problematic dependencies but they should not be relevant to our users either. Follow-up on https://github.com/apache/pekko/pull/1689 and https://github.com/apache/pekko/pull/1392
42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
name: Update Dependency Graph
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # default branch of the project
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
dependency-graph:
|
|
name: Update Dependency Graph
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'apache/pekko'
|
|
permissions:
|
|
# The API requires write permission on the repository
|
|
# to submit dependencies
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install sbt
|
|
uses: sbt/setup-sbt@v1
|
|
- uses: scalacenter/sbt-dependency-submission@v3
|
|
with:
|
|
configs-ignore: provided optional test TestJdk9 compile-internal runtime-internal pr-validation multi-jvm scala-tool scala-doc-tool
|
|
modules-ignore: pekko-bench-jmh_2.12 pekko-docs_2.12 pekko-bench-jmh_2.13 pekko-docs_2.13 pekko-bench-jmh_3 pekko-docs_3
|