Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

build(deps): bump gradle/actions from 3.3.0 to 3.4.0 #100

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3.3.0
uses: gradle/actions/setup-gradle@v3.4.0
with:
gradle-home-cache-cleanup: true

@@ -117,7 +117,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3.3.0
uses: gradle/actions/setup-gradle@v3.4.0
with:
gradle-home-cache-cleanup: true

@@ -201,7 +201,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3.3.0
uses: gradle/actions/setup-gradle@v3.4.0
with:
gradle-home-cache-cleanup: true

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3.3.0
uses: gradle/actions/setup-gradle@v3.4.0
with:
gradle-home-cache-cleanup: true


Unchanged files with check annotations Beta

return descriptionFileName;
}
public Chipset getChipset() {

Check warning on line 311 in platforms/amiga/src/main/java/com/yanncebron/m68kplugin/amiga/hardware/M68kAmigaHardwareRegister.java

GitHub Actions / Qodana Community for JVM

Class is exposed outside of its visibility scope

Class `Chipset` is exposed outside its defined visibility scope
return chipset;
}
return copperDanger;
}
public Access getAccess() {

Check warning on line 319 in platforms/amiga/src/main/java/com/yanncebron/m68kplugin/amiga/hardware/M68kAmigaHardwareRegister.java

GitHub Actions / Qodana Community for JVM

Class is exposed outside of its visibility scope

Class `Access` is exposed outside its defined visibility scope
return access;
}
public Set<Chip> getChips() {

Check warning on line 323 in platforms/amiga/src/main/java/com/yanncebron/m68kplugin/amiga/hardware/M68kAmigaHardwareRegister.java

GitHub Actions / Qodana Community for JVM

Class is exposed outside of its visibility scope

Class `Chip` is exposed outside its defined visibility scope
return chips;
}
final class M68kCodeStyleSettingsProvider extends CodeStyleSettingsProvider {
@Nullable

Check warning on line 33 in src/com/yanncebron/m68kplugin/settings/codestyle/M68kCodeStyleSettingsProvider.java

GitHub Actions / Qodana Community for JVM

Nullability and data flow problems

@nullable method 'createCustomSettings' always returns a non-null value
@Override
public CustomCodeStyleSettings createCustomSettings(CodeStyleSettings settings) {
return new M68kCodeStyleSettings(settings);
}
@Nullable

Check warning on line 39 in src/com/yanncebron/m68kplugin/settings/codestyle/M68kCodeStyleSettingsProvider.java

GitHub Actions / Qodana Community for JVM

Nullability and data flow problems

@nullable method 'getConfigurableDisplayName' always returns a non-null value
@Override
public String getConfigurableDisplayName() {
return M68kLanguage.INSTANCE.getDisplayName();
return M68kLanguage.INSTANCE;
}
@Nullable

Check warning on line 36 in src/com/yanncebron/m68kplugin/settings/codestyle/M68kLanguageCodeStyleSettingsProvider.java

GitHub Actions / Qodana Community for JVM

Nullability and data flow problems

@nullable method 'getCodeSample' always returns a non-null value
@Override
public String getCodeSample(@NotNull LanguageCodeStyleSettingsProvider.SettingsType settingsType) {
switch (settingsType) {
}
}
@Nullable

Check warning on line 51 in src/com/yanncebron/m68kplugin/settings/codestyle/M68kLanguageCodeStyleSettingsProvider.java

GitHub Actions / Qodana Community for JVM

Nullability and data flow problems

@nullable method 'getIndentOptionsEditor' always returns a non-null value
@Override
public IndentOptionsEditor getIndentOptionsEditor() {
return new IndentOptionsEditor(this);