You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2021/12/21 12:33:30 UTC

[logging-log4j2] branch release-2.x updated: Remove redundant caching from GitHub Actions. (#635)

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

vy pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new 99e7d96  Remove redundant caching from GitHub Actions. (#635)
99e7d96 is described below

commit 99e7d9614b4490751cd90a49bb9af67b1cabda73
Author: Volkan Yazici <vo...@yazi.ci>
AuthorDate: Tue Dec 21 13:32:44 2021 +0100

    Remove redundant caching from GitHub Actions. (#635)
---
 .github/workflows/benchmark.yml | 7 -------
 .github/workflows/main.yml      | 8 --------
 2 files changed, 15 deletions(-)

diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
index 1139d6f..7b55c9c 100644
--- a/.github/workflows/benchmark.yml
+++ b/.github/workflows/benchmark.yml
@@ -51,13 +51,6 @@ jobs:
           architecture: x64
           cache: maven
 
-      - name: Set up Maven caching
-        uses: actions/cache@v2
-        with:
-          path: ~/.m2/repository
-          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-          restore-keys: ${{ runner.os }}-maven-
-
       - name: Build with Maven
         shell: bash
         run: |
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 1e88eff..7697112 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -31,14 +31,6 @@ jobs:
       - name: Checkout repository
         uses: actions/checkout@v2
 
-      - name: Setup Maven caching
-        uses: actions/cache@v2
-        with:
-          path: ~/.m2/repository
-          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-          restore-keys: |
-            ${{ runner.os }}-maven-
-
       - name: Setup JDK 11
         uses: actions/setup-java@v2.4.0
         with: