Skip to content

Commit 883b2da

Browse files
ci: github action checkout to v3 (#1303)
1 parent c378dac commit 883b2da

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

.github/workflows/central-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
with:
2020
ref: v${{ github.event.inputs.release_version }}
2121
- uses: gradle/wrapper-validation-action@v1

.github/workflows/dependency-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
dependency-updates:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: actions/[email protected]
1616
with:
1717
path: ~/.gradle/caches

.github/workflows/graalvm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
2929
sudo apt-get clean
3030
df -h
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- uses: actions/[email protected]
3333
with:
3434
path: ~/.gradle/caches

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
2929
sudo apt-get clean
3030
df -h
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- uses: actions/[email protected]
3333
with:
3434
path: ~/.gradle/caches

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.repository != 'micronaut-projects/micronaut-project-template'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- uses: actions/[email protected]
1515
with:
1616
path: ~/.gradle/caches

.github/workflows/release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository != 'micronaut-projects/micronaut-project-template'
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Check if it has release drafter config file
2121
id: check_release_drafter
2222
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
token: ${{ secrets.GH_TOKEN }}
1818
- uses: gradle/wrapper-validation-action@v1
@@ -64,7 +64,7 @@ jobs:
6464
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }}
6565
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
6666
- name: Checkout micronaut-core
67-
uses: actions/checkout@v2
67+
uses: actions/checkout@v3
6868
with:
6969
token: ${{ secrets.GH_TOKEN }}
7070
repository: micronaut-projects/micronaut-core

config/checkstyle/checkstyle.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@
8282
<property name="file" value="${config_loc}/suppressions.xml"/>
8383
<property name="optional" value="false"/>
8484
</module>
85+
<module name="SuppressionFilter">
86+
<property name="file" value="${config_loc}/custom-suppressions.xml"/>
87+
<property name="optional" value="true"/>
88+
</module>
8589

8690
<module name="TreeWalker">
8791
<module name="SuppressionCommentFilter"/>

0 commit comments

Comments
 (0)