You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2022/05/17 03:34:34 UTC

[httpcomponents-client] branch master updated: chore(deps): Included dependency review

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git


The following commit(s) were added to refs/heads/master by this push:
     new 35732cacb chore(deps): Included dependency review
35732cacb is described below

commit 35732cacb26a5f8d0ae6fb6a7528d3b0fd8b50ed
Author: naveensrinivasan <17...@users.noreply.github.com>
AuthorDate: Sun May 15 17:29:36 2022 -0500

    chore(deps): Included dependency review
    
    > Dependency Review GitHub Action in your repository to enforce dependency
    > reviews on your pull requests.
    > The action scans for vulnerable versions of dependencies introduced by package version
    > changes in pull requests,
    > and warns you about the associated security vulnerabilities.
    > This gives you better visibility of what's changing in a pull request,
    > and helps prevent vulnerabilities being added to your repository.
    
    https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
    Signed-off-by: naveensrinivasan <17...@users.noreply.github.com>
---
 .github/workflows/depsreview.yaml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/.github/workflows/depsreview.yaml b/.github/workflows/depsreview.yaml
new file mode 100644
index 000000000..3db97761f
--- /dev/null
+++ b/.github/workflows/depsreview.yaml
@@ -0,0 +1,31 @@
+# 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: 'Dependency Review'
+on: [pull_request]
+
+permissions:
+  contents: read
+
+jobs:
+  dependency-review:
+    runs-on: ubuntu-latest
+    steps:
+      - name: 'Checkout Repository'
+        uses: actions/checkout@v3
+      - name: 'Dependency Review'
+        uses: actions/dependency-review-action@v1