1
0

Bump actions/cache from 3.0.2 to 3.0.3

This commit is contained in:
Gary Gregory
2022-05-31 16:37:47 -04:00
parent 59bbadfc5a
commit 1046aab2e1
2 changed files with 235 additions and 235 deletions

View File

@@ -1,47 +1,47 @@
# Licensed to the Apache Software Foundation (ASF) under one or more # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with # contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. # this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0 # 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 not use this file except in compliance with
# the License. You may obtain a copy of the License at # the License. You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
name: Java CI name: Java CI
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }} continue-on-error: ${{ matrix.experimental }}
strategy: strategy:
matrix: matrix:
java: [ 8, 11, 17 ] java: [ 8, 11, 17 ]
experimental: [false] experimental: [false]
# include: # include:
# - java: 18-ea # - java: 18-ea
# experimental: true # experimental: true
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/cache@v3.0.2 - uses: actions/cache@v3.0.3
with: with:
path: ~/.m2/repository path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: | restore-keys: |
${{ runner.os }}-maven- ${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }} - name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
distribution: 'temurin' distribution: 'temurin'
java-version: ${{ matrix.java }} java-version: ${{ matrix.java }}
- name: Build with Maven - name: Build with Maven
run: mvn -V --no-transfer-progress -D doclint=none --file pom.xml run: mvn -V --no-transfer-progress -D doclint=none --file pom.xml

View File

@@ -1,188 +1,188 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- <!--
Licensed to the Apache Software Foundation (ASF) under one or more Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership. this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0 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 not use this file except in compliance with
the License. You may obtain a copy of the License at the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!-- <!--
This file is also used by the maven-changes-plugin to generate the release notes. This file is also used by the maven-changes-plugin to generate the release notes.
Useful ways of finding items to add to this file are: Useful ways of finding items to add to this file are:
1. Add items when you fix a bug or add a feature (this makes the 1. Add items when you fix a bug or add a feature (this makes the
release process easy :-). release process easy :-).
2. Do a JIRA search for tickets closed since the previous release. 2. Do a JIRA search for tickets closed since the previous release.
3. Use the report generated by the maven-changelog-plugin to see all 3. Use the report generated by the maven-changelog-plugin to see all
SVN commits. TBA how to use this with SVN. SVN commits. TBA how to use this with SVN.
To generate the release notes from this file: To generate the release notes from this file:
mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=nn] mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=nn]
then tweak the formatting if necessary then tweak the formatting if necessary
and commit and commit
The <action> type attribute can be add,update,fix,remove. The <action> type attribute can be add,update,fix,remove.
--> -->
<document xmlns="http://maven.apache.org/changes/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd"> <document xmlns="http://maven.apache.org/changes/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
<properties> <properties>
<title>Release Notes</title> <title>Release Notes</title>
</properties> </properties>
<body> <body>
<release version="1.3.0" date="TBD" description="This is a maintenance release containing bug fixes. Java 8 or later is required."> <release version="1.3.0" date="TBD" description="This is a maintenance release containing bug fixes. Java 8 or later is required.">
<!-- FIXES --> <!-- FIXES -->
<action issue="LOGGING-165" dev="britter" type="add"> <action issue="LOGGING-165" dev="britter" type="add">
Add Automatic-Module-Name Manifest Header for Java 9 compatibility. Add Automatic-Module-Name Manifest Header for Java 9 compatibility.
</action> </action>
<action issue="LOGGING-163" dev="ggregory" type="fix" due-to="Kaloyan Spiridonov"> <action issue="LOGGING-163" dev="ggregory" type="fix" due-to="Kaloyan Spiridonov">
BufferedReader is not closed properly. BufferedReader is not closed properly.
</action> </action>
<action issue="LOGGING-177" dev="ggregory" type="fix" due-to="Arturo Bernal"> <action issue="LOGGING-177" dev="ggregory" type="fix" due-to="Arturo Bernal">
Remove redundant initializer #46 Remove redundant initializer #46
</action> </action>
<action dev="ggregory" type="fix" due-to="Jakob van Kruijssen, Bruno P. Kinoshita, Gary Gregory"> <action dev="ggregory" type="fix" due-to="Jakob van Kruijssen, Bruno P. Kinoshita, Gary Gregory">
Use a weak reference for the cached class loader #71. Use a weak reference for the cached class loader #71.
</action> </action>
<action dev="ggregory" type="fix" due-to="xiaozhiliaoo"> <action dev="ggregory" type="fix" due-to="xiaozhiliaoo">
Add more entries to .gitignore file #25. Add more entries to .gitignore file #25.
</action> </action>
<action dev="ggregory" type="fix" due-to="Arturo Bernal"> <action dev="ggregory" type="fix" due-to="Arturo Bernal">
Minor Improvements #34. Minor Improvements #34.
</action> </action>
<!-- UPDATES --> <!-- UPDATES -->
<action dev="ggregory" type="update" due-to="Gary Gregory"> <action dev="ggregory" type="update" due-to="Gary Gregory">
Bump Java from 6 to 8. Bump Java from 6 to 8.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory"> <action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory">
Bump actions/cache from 2 to 3.0.2 #50, #77. Bump actions/cache from 2 to 3.0.3 #50, #77.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump actions/checkout from 2.3.1 to 3, #24, #63, #75. Bump actions/checkout from 2.3.1 to 3, #24, #63, #75.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory"> <action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory">
Bump actions/setup-java from 1.4.0 to 3, #21. Bump actions/setup-java from 1.4.0 to 3, #21.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump junit from 3.8.1 to 4.13.2 #23, #38. Bump junit from 3.8.1 to 4.13.2 #23, #38.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump clirr-maven-plugin from 2.2.2 to 2.8 #14. Bump clirr-maven-plugin from 2.2.2 to 2.8 #14.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump findbugs-maven-plugin from 2.5.2 to 3.0.5 #8. Bump findbugs-maven-plugin from 2.5.2 to 3.0.5 #8.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory"> <action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory">
Bump maven-failsafe-plugin from 2.12 to 3.0.0-M5 #31. Bump maven-failsafe-plugin from 2.12 to 3.0.0-M5 #31.
</action> </action>
<action dev="ggregory" type="update" due-to="Gary Gregory"> <action dev="ggregory" type="update" due-to="Gary Gregory">
Bump spotbugs-surefire-plugin from 2.22.2 to 3.0.0-M5. Bump spotbugs-surefire-plugin from 2.22.2 to 3.0.0-M5.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump maven-dependency-plugin from 2.4 to 3.3.0 #29, #79. Bump maven-dependency-plugin from 2.4 to 3.3.0 #29, #79.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump maven-pmd-plugin from 3.3 to 3.16.0 #28. Bump maven-pmd-plugin from 3.3 to 3.16.0 #28.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump maven-assembly-plugin from 2.5 to 3.3.0 #30. Bump maven-assembly-plugin from 2.5 to 3.3.0 #30.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump servlet-api from 2.3 to 2.5 #27. Bump servlet-api from 2.3 to 2.5 #27.
</action> </action>
<action dev="ggregory" type="update" due-to="Gary Gregory, Dependabot"> <action dev="ggregory" type="update" due-to="Gary Gregory, Dependabot">
Bump maven-checkstyle-plugin from 2.7 to 3.1.2 #35. Bump maven-checkstyle-plugin from 2.7 to 3.1.2 #35.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump spotbugs-maven-plugin from 4.1.4 to 4.6.0.0 #33, #70, #78. Bump spotbugs-maven-plugin from 4.1.4 to 4.6.0.0 #33, #70, #78.
</action> </action>
<action dev="ggregory" type="update" due-to="Dependabot"> <action dev="ggregory" type="update" due-to="Dependabot">
Bump spotbugs from 4.5.3 to 4.7.0 #81, #87. Bump spotbugs from 4.5.3 to 4.7.0 #81, #87.
</action> </action>
<action dev="kinow" type="update" due-to="Dependabot"> <action dev="kinow" type="update" due-to="Dependabot">
Bump commons-parent from 52 to 53 #82. Bump commons-parent from 52 to 53 #82.
</action> </action>
<action dev="kinow" type="update" due-to="Dependabot"> <action dev="kinow" type="update" due-to="Dependabot">
Bump github/codeql-action from 1 to 2 #86. Bump github/codeql-action from 1 to 2 #86.
</action> </action>
</release> </release>
<release version="1.2" date="2014-07-11" description="This is a maintenance release containing bug fixes. Java 6 or later is required."> <release version="1.2" date="2014-07-11" description="This is a maintenance release containing bug fixes. Java 6 or later is required.">
<action issue="LOGGING-37" dev="tn" type="fix" due-to="Matthias Ernst,Archie Cobbs"> <action issue="LOGGING-37" dev="tn" type="fix" due-to="Matthias Ernst,Archie Cobbs">
Improve performance of LogFactory#getFactory() by calling Thread#currentThread()#getContextClassLoader() Improve performance of LogFactory#getFactory() by calling Thread#currentThread()#getContextClassLoader()
directly instead of using reflection. As a consequence support for JDK 1.1 has been dropped. directly instead of using reflection. As a consequence support for JDK 1.1 has been dropped.
</action> </action>
<action issue="LOGGING-156" dev="tn" type="fix" due-to="Mikolaj Izdebski"> <action issue="LOGGING-156" dev="tn" type="fix" due-to="Mikolaj Izdebski">
Fix SecurityAllowedTestCase when executed with OpenJDK 1.7 due to an additional required RuntimePermission. Fix SecurityAllowedTestCase when executed with OpenJDK 1.7 due to an additional required RuntimePermission.
</action> </action>
<action issue="LOGGING-157" dev="tn" type="fix" due-to="Ville Skyttä"> <action issue="LOGGING-157" dev="tn" type="fix" due-to="Ville Skyttä">
Fix javadoc to comply with javadoc tool from jdk 1.8. Fix javadoc to comply with javadoc tool from jdk 1.8.
</action> </action>
</release> </release>
<release version="1.1.3" date="2013-05-23" description="This is a maintenance release containing bug fixes."> <release version="1.1.3" date="2013-05-23" description="This is a maintenance release containing bug fixes.">
<action issue="LOGGING-151" dev="tn" type="fix" due-to="Krzysztof Daniel"> <action issue="LOGGING-151" dev="tn" type="fix" due-to="Krzysztof Daniel">
Use "org.apache.commons.logging" as bundle symbolic name. Use "org.apache.commons.logging" as bundle symbolic name.
</action> </action>
</release> </release>
<release version="1.1.2" date="2013-03-20" description="This is a maintenance release containing bug fixes."> <release version="1.1.2" date="2013-03-20" description="This is a maintenance release containing bug fixes.">
<action issue="LOGGING-124" dev="tn" type="fix" due-to="Christian Schneider"> <action issue="LOGGING-124" dev="tn" type="fix" due-to="Christian Schneider">
The jar manifest now contains proper OSGi-related metadata information. The jar manifest now contains proper OSGi-related metadata information.
</action> </action>
<action issue="LOGGING-144" dev="tn" type="fix" due-to="Sebastian Bazley"> <action issue="LOGGING-144" dev="tn" type="fix" due-to="Sebastian Bazley">
LogFactory and LogFactoryImpl will not swallow certain errors anymore (ThreadDeath LogFactory and LogFactoryImpl will not swallow certain errors anymore (ThreadDeath
and VirtualMachineError). and VirtualMachineError).
</action> </action>
<action issue="LOGGING-135" dev="tn" type="update" due-to="Sebastian Bazley"> <action issue="LOGGING-135" dev="tn" type="update" due-to="Sebastian Bazley">
Improved thread-safety for several log adapters, including AvalonLogger, SimpleLog, Improved thread-safety for several log adapters, including AvalonLogger, SimpleLog,
Log4JLogger, LogKitLogger. Log4JLogger, LogKitLogger.
</action> </action>
<action issue="LOGGING-138" dev="tn" type="update" due-to="Luke Lu"> <action issue="LOGGING-138" dev="tn" type="update" due-to="Luke Lu">
In case of a discovery failure now also the stacktrace of the cause will be In case of a discovery failure now also the stacktrace of the cause will be
added to the diagnostic message. added to the diagnostic message.
</action> </action>
<action issue="LOGGING-132" dev="tn" type="fix" due-to="Nathan Niesen"> <action issue="LOGGING-132" dev="tn" type="fix" due-to="Nathan Niesen">
Jdk14Logger now correctly uses the specified logger name. Jdk14Logger now correctly uses the specified logger name.
</action> </action>
<action issue="LOGGING-133" dev="tn" type="update" due-to="Shevek"> <action issue="LOGGING-133" dev="tn" type="update" due-to="Shevek">
Change scope of Jdk14Logger.log(Level, String, Throwable) to protected, allowing Change scope of Jdk14Logger.log(Level, String, Throwable) to protected, allowing
subclasses to modify the logging output. subclasses to modify the logging output.
</action> </action>
<action issue="LOGGING-146" dev="tn" type="fix" due-to="Sebastian Bazley"> <action issue="LOGGING-146" dev="tn" type="fix" due-to="Sebastian Bazley">
Properly synchronize access to protected static field LogFactory.nullClassLoaderFactory. Properly synchronize access to protected static field LogFactory.nullClassLoaderFactory.
</action> </action>
<action issue="LOGGING-119" dev="tn" type="fix" due-to="Nitzan Niv, Philippe Mouawad"> <action issue="LOGGING-119" dev="tn" type="fix" due-to="Nitzan Niv, Philippe Mouawad">
Prevent potential deadlock scenario in WeakHashtable. Prevent potential deadlock scenario in WeakHashtable.
</action> </action>
<action issue="LOGGING-130" dev="sebb" type="fix" due-to="Matthew P. Del Buono"> <action issue="LOGGING-130" dev="sebb" type="fix" due-to="Matthew P. Del Buono">
Potential missing privileged block for class loader. Potential missing privileged block for class loader.
</action> </action>
<action issue="LOGGING-145" dev="sebb" type="fix"> <action issue="LOGGING-145" dev="sebb" type="fix">
LogFactoryImpl.setAttribute - possible NPE. LogFactoryImpl.setAttribute - possible NPE.
</action> </action>
<action issue="LOGGING-142" dev="sebb" type="fix" due-to="Jingguo Yao"> <action issue="LOGGING-142" dev="sebb" type="fix" due-to="Jingguo Yao">
Log4JLogger uses deprecated static members of Priority such as INFO. Log4JLogger uses deprecated static members of Priority such as INFO.
</action> </action>
<action issue="LOGGING-128" dev="sebb" type="fix" due-to="Peter Lawrey"> <action issue="LOGGING-128" dev="sebb" type="fix" due-to="Peter Lawrey">
Static analysis suggests a number of potential improvements. Static analysis suggests a number of potential improvements.
</action> </action>
<action issue="LOGGING-147" dev="sebb" type="fix"> <action issue="LOGGING-147" dev="sebb" type="fix">
SimpleLog.log - unsafe update of shortLogName. SimpleLog.log - unsafe update of shortLogName.
</action> </action>
<action issue="LOGGING-148" dev="sebb" type="fix"> <action issue="LOGGING-148" dev="sebb" type="fix">
LogFactory.diagnosticPrefix and diagnosticsStream could be final. LogFactory.diagnosticPrefix and diagnosticsStream could be final.
</action> </action>
</release> </release>
</body> </body>
</document> </document>