Skip to content

Commit b8cc3e5

Browse files
Merge pull request #1 from asaasdev/luisz/tomcat-0.0.81
Bump tomcat to 9.0.81
2 parents 462d10d + 080e98f commit b8cc3e5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919

2020
- name: Install Java 1.8
21-
uses: actions/setup-java@v2
21+
uses: actions/setup-java@v4
2222
with:
23-
distribution: 'temurin'
23+
distribution: 'corretto'
2424
java-version: '8'
2525

2626
- name: Cache maven
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.m2
3030
key: gradle-${{ hashFiles('**/BuildConfig.groovy') }}
3131
restore-keys: |
3232
gradle-
3333
3434
- name: Cache grails wrapper
35-
uses: actions/cache@v2
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/.grails
3838
key: grails-${{ hashFiles('**/application.properties') }}
@@ -67,7 +67,7 @@ jobs:
6767
mkdir -p ./plugin-artifacts
6868
mv tomcat-* ./plugin-artifacts/.
6969
70-
- uses: actions/upload-artifact@v2
70+
- uses: actions/upload-artifact@v4
7171
with:
7272
name: plugin-artifacts
7373
path: plugin-artifacts

TomcatGrailsPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
class TomcatGrailsPlugin {
17-
def version = '9.0.56'
17+
def version = '9.0.81'
1818
def grailsVersion = '2.5 > *'
1919
def scopes = [excludes: 'war']
2020
def title = 'Apache Tomcat plugin'

grails-app/conf/BuildConfig.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ grails.project.dependency.resolution = {
1818
}
1919

2020
dependencies {
21-
String tomcatVersion = '9.0.56'
21+
String tomcatVersion = '9.0.81'
2222
String tomcatLogVersion = '8.5.2'
2323

2424
compile "org.apache.tomcat.embed:tomcat-embed-core:$tomcatVersion"

0 commit comments

Comments
 (0)