Skip to content

Commit d84e892

Browse files
committed
Merge remote-tracking branch 'upstream/main' into fix-for-issue-8189
* upstream/main: (111 commits) Fix link and remove obsolete FAQ Rename 'Close' to 'Cancel' in the External Changes Resolver dialog (JabRef#9130) Tiny rephrasing Linked files with an absolute path can be opened again (JabRef#9129) Oberservable Preferences M (CleanupPreferences) (JabRef#9126) fix broken link Fix broken link Fix old JabRef linked files containing the file directory as element in the filename (JabRef#9046) PDFs are not stored next to .bib file if file directory is configured (JabRef#9113) Remove double stateManager.activeDatabaseProperty() (JabRef#9127) Don't show the info button when the authors field content is identical (JabRef#9128) "study.yml" is static now (JabRef#9125) fix l10n Compile fix Fix parsing of JabRef v5.7 study.yml files (JabRef#9124) Fix integrity check for tilde accents in author names (JabRef#9097) Rework the Define study parameters dialog (JabRef#9123) Fix parsing of save actions (JabRef#9122) Fix exception that occurs when saving name formatters (JabRef#9121) Refine code for BibEntry#replaceDownloadedFile (JabRef#9118) ...
2 parents 33de3cf + 98ce1b5 commit d84e892

File tree

533 files changed

+21017
-9331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

533 files changed

+21017
-9331
lines changed

.gitattributes

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,9 @@ gradlew text eol=lf
1313
# .bib files have to be written using OS specific line endings to enable our tests working
1414
*.bib text !eol
1515

16-
# disable after a release
17-
CHANGELOG.md merge=union
16+
# Citavi needs to be LF line ending
17+
# This overwrites the setting of "*.bib"
18+
Citavi*.bib eol=lf
19+
20+
# disable after a release (otherwise, duplicate CHANGELOG.md entries will be generated)
21+
# CHANGELOG.md merge=union

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
attributes:
1313
label: JabRef version
1414
options:
15-
- "5.6 (latest release)"
15+
- "5.7 (latest release)"
1616
- "3.8.2"
1717
- Latest development branch build (please note build date below)
1818
- Other (please describe below)

.github/workflows/automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
env:
1717
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
1818
- name: Auto approve
19-
uses: hmarr/auto-approve-action@v2.2.1
19+
uses: hmarr/auto-approve-action@v2.4.0
2020
if: steps.waitforstatuschecks.outputs.status == 'success'
2121
with:
2222
github-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/cleanup_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "##[set-output name=branch;]$(echo ${{ github.event.pull_request.head.ref }})"
2828
- name: Delete folder on builds.jabref.org
2929
if: ${{ steps.checksecrets.outputs.secretspresent }}
30-
uses: appleboy/[email protected].4
30+
uses: appleboy/[email protected].5
3131
with:
3232
script: rm -rf /var/www/builds.jabref.org/www/${{ steps.extract_branch.outputs.branch }} || true
3333
host: build-upload.jabref.org

CHANGELOG.md

Lines changed: 59 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,61 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
1111

1212
### Added
1313

14+
- In case a backup is found, the filename of the backup is shown.
15+
- On startup, JabRef notifies the user if there were parsing errors during opening.
16+
- We integrated a new three-way merge UI for merging entries in the Entries Merger Dialog, the Duplicate Resolver Dialog, the Entry Importer Dialog, and the External Changes Resolver Dialog. [#8945](https://github.com/JabRef/jabref/pull/8945)
17+
- We added the ability to merge groups, keywords, comments and files when merging entries. [#9022](https://github.com/JabRef/jabref/pull/9022)
18+
- We added a warning message next to the authors field in the merge dialog to warn users when the authors are the same but formatted differently. [#8745](https://github.com/JabRef/jabref/issues/8745)
19+
20+
### Changed
21+
22+
- We improved the Citavi Importer to also import so called Knowledge-items into the field `comment` of the corresponding entry [#9025](https://github.com/JabRef/jabref/issues/9025)
23+
- We removed wrapping of string constants when writing to a `.bib` file.
24+
- We call backup files `.bak` and temporary writing files now `.sav`.
25+
- JabRef keeps 10 older versions of a `.bib` file in the [user data dir](https://github.com/harawata/appdirs#supported-directories) (instead of a single `.sav` (now: `.bak`) file in the directory of the `.bib` file)
26+
- We changed the button label from "Return to JabRef" to "Return to library" to better indicate the purpose of the action.
27+
- We removed "last-search-date" from the SLR feature, because the last-search-date can be deducted from the git logs. [#9116](https://github.com/JabRef/jabref/pull/9116)
28+
- A user can now add arbitrary data into `study.yml`. JabRef just ignores this data. [#9124](https://github.com/JabRef/jabref/pull/9124)
29+
- We reworked the External Changes Resolver dialog. [#9021](https://github.com/JabRef/jabref/pull/9021)
30+
- The fallback directory of the file folder now is the general file directory. In case there was a directory configured for a library and this directory was not found, JabRef placed the PDF next to the .bib file and not into the general file directory.
31+
- The global default directory for storing PDFs is now the subdirectory "JabRef" in the user's home.
32+
- We reworked the Define study parameters dialog. [#9123](https://github.com/JabRef/jabref/pull/9123)
33+
34+
### Fixed
35+
36+
- We fixed an issue where author names with tilde accents (for example ñ) were marked as "Names are not in the standard BibTex format" [#8071](https://github.com/JabRef/jabref/issues/8071)
37+
- We fixed an issue where the possibility to generate a subdatabase from an aux file was writing empty files when called from the commandline [#9115](https://github.com/JabRef/jabref/issues/9115), [forum#3516](https://discourse.jabref.org/t/export-subdatabase-from-aux-file-on-macos-command-line/3516)
38+
- We fixed the display of issue, number, eid and pages fields in the entry preview. [#8607](https://github.com/JabRef/jabref/pull/8607), [#8372](https://github.com/JabRef/jabref/issues/8372), [Koppor#514](https://github.com/koppor/jabref/issues/514), [forum#2390](https://discourse.jabref.org/t/unable-to-edit-my-bibtex-file-that-i-used-before-vers-5-1/2390), [forum#3462](https://discourse.jabref.org/t/jabref-5-6-need-help-with-export-from-jabref-to-microsoft-word-entry-preview-of-apa-7-not-rendering-correctly/3462)
39+
- We fixed the page ranges checker to detect article numbers in the pages field (used at [Check Integrity](https://docs.jabref.org/finding-sorting-and-cleaning-entries/checkintegrity)). [#8607](https://github.com/JabRef/jabref/pull/8607)
40+
- The [HtmlToLaTeXFormatter](https://docs.jabref.org/finding-sorting-and-cleaning-entries/saveactions#html-to-latex) keeps single `<` characters.
41+
- We fixed a performance regression when opening large libraries [#9041](https://github.com/JabRef/jabref/issues/9041)
42+
- We fixed a bug where spaces are trimmed when highlighting differences in the Entries merge dialog. [koppor#371](https://github.com/koppor/jabref/issues/371)
43+
- We fixed some visual glitches with the linked files editor field in the entry editor and increased its height. [#8823](https://github.com/JabRef/jabref/issues/8823)
44+
- We fixed several bugs regarding the manual and the autosave of library files that sometimes lead to exceptions or data loss. [#9067](https://github.com/JabRef/jabref/pull/9067), [#8448](https://github.com/JabRef/jabref/issues/8484), [#8746](https://github.com/JabRef/jabref/issues/8746), [#6684](https://github.com/JabRef/jabref/issues/6684), [#6644](https://github.com/JabRef/jabref/issues/6644), [#6102](https://github.com/JabRef/jabref/issues/6102), [#6002](https://github.com/JabRef/jabref/issues/6000)
45+
- We fixed an issue where applied save actions on saving the library file would lead to the dialog "The library has been modified by another program" popping up [#4877](https://github.com/JabRef/jabref/issues/4877)
46+
- We fixed issues with save actions not correctly loaded when opening the library. [#9122](https://github.com/JabRef/jabref/pull/9122)
47+
- We fixed an issue where title case didn't capitalize words after en-dash characters. [#9068](https://github.com/JabRef/jabref/pull/9068)
48+
- We fixed an issue where JabRef would not exit when a connection to a LibreOffice document was established previously and the document is still open. [#9075](https://github.com/JabRef/jabref/issues/9075)
49+
50+
### Removed
51+
52+
53+
54+
55+
56+
57+
58+
## [5.7] - 2022-08-05
59+
60+
### Added
61+
1462
- We added a fetcher for [Biodiversity Heritage Library](https://www.biodiversitylibrary.org/). [8539](https://github.com/JabRef/jabref/issues/8539)
1563
- We added support for multiple messages in the snackbar. [#7340](https://github.com/JabRef/jabref/issues/7340)
1664
- We added an extra option in the 'Find Unlinked Files' dialog view to ignore unnecessary files like Thumbs.db, DS_Store, etc. [koppor#373](https://github.com/koppor/jabref/issues/373)
1765
- JabRef now writes log files. Linux: `$home/.cache/jabref/logs/version`, Windows: `%APPDATA%\..\Local\harawata\jabref\version\logs`, Mac: `Users/.../Library/Logs/jabref/version`
1866
- We added an importer for Citavi backup files, support ".ctv5bak" and ".ctv6bak" file formats. [#8322](https://github.com/JabRef/jabref/issues/8322)
67+
- We added a feature to drag selected entries and drop them to other opened inactive library tabs [koppor521](https://github.com/koppor/jabref/issues/521).
68+
- We added support for the [biblatex-apa](https://github.com/plk/biblatex-apa) legal entry types `Legislation`, `Legadminmaterial`, `Jurisdiction`, `Constitution` and `Legal` [#8931](https://github.com/JabRef/jabref/issues/8931)
1969

2070
### Changed
2171

@@ -41,6 +91,9 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
4191

4292
### Fixed
4393

94+
- We fixed an issue where linked fails containing parts of the main file directory could not be opened. [#8991](https://github.com/JabRef/jabref/issues/8991)
95+
- Linked files with an absolute path can be opened again. [#8991](https://github.com/JabRef/jabref/issues/8991)
96+
- We fixed an issue where the user could not rate an entry in the main table when an entry was not yet ranked. [#5842](https://github.com/JabRef/jabref/issues/5842)
4497
- We fixed an issue that caused JabRef to sometimes open multiple instances when "Remote Operation" is enabled. [#8653](https://github.com/JabRef/jabref/issues/8653)
4598
- We fixed an issue where linked files with the filetype "application/pdf" in an entry were not shown with the correct PDF-Icon in the main table [8930](https://github.com/JabRef/jabref/issues/8930)
4699
- We fixed an issue where "open folder" for linked files did not open the folder and did not select the file unter certain Linux desktop environments [#8679](https://github.com/JabRef/jabref/issues/8679), [#8849](https://github.com/JabRef/jabref/issues/8849)
@@ -58,20 +111,15 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
58111
- We fixed a bug where switching between themes will cause an error/exception. [#8939](https://github.com/JabRef/jabref/pull/8939)
59112
- We fixed a bug where files that were deleted in the source bibtex file were kept in the index. [#8962](https://github.com/JabRef/jabref/pull/8962)
60113
- We fixed "Error while sending to JabRef" when the browser extension interacts with JabRef. [JabRef-Browser-Extension#479](https://github.com/JabRef/JabRef-Browser-Extension/issues/479)
114+
- We fixed a bug where updating group view mode (intersection or union) requires re-selecting groups to take effect. [#6998](https://github.com/JabRef/jabref/issues/6998)
115+
- We fixed a bug that prevented external group metadata changes from being merged. [#8873](https://github.com/JabRef/jabref/issues/8873)
116+
- We fixed the shared database opening dialog to remember autosave folder and tick. [#7516](https://github.com/JabRef/jabref/issues/7516)
117+
- We fixed an issue where name formatter could not be saved. [#9120](https://github.com/JabRef/jabref/issues/9120)
61118

62119
### Removed
63120

64121
- We removed the social media buttons for our Twitter and Facebook pages. [#8774](https://github.com/JabRef/jabref/issues/8774)
65122

66-
67-
68-
69-
70-
71-
72-
73-
74-
75123
## [5.6] - 2022-04-25
76124

77125
### Added
@@ -842,7 +890,8 @@ The changelog of JabRef 4.x is available at the [v4.3.1 tag](https://github.com/
842890
The changelog of JabRef 3.x is available at the [v3.8.2 tag](https://github.com/JabRef/jabref/blob/v3.8.2/CHANGELOG.md).
843891
The changelog of JabRef 2.11 and all previous versions is available as [text file in the v2.11.1 tag](https://github.com/JabRef/jabref/blob/v2.11.1/CHANGELOG).
844892

845-
[Unreleased]: https://github.com/JabRef/jabref/compare/v5.6...HEAD
893+
[Unreleased]: https://github.com/JabRef/jabref/compare/v5.7...HEAD
894+
[5.7]: https://github.com/JabRef/jabref/compare/v5.6...v5.7
846895
[5.6]: https://github.com/JabRef/jabref/compare/v5.5...v5.6
847896
[5.5]: https://github.com/JabRef/jabref/compare/v5.4...v5.5
848897
[5.4]: https://github.com/JabRef/jabref/compare/v5.3...v5.4

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
When contributing to this repository, please first discuss the change you wish to make via issue,
44
email, or any other method with the owners of this repository before making a change.
55

6-
Support on code contribution is available at <https://devdocs.jabref.org/contributing>.
7-
General overview on contributing is available at <https://contribute.jabref.org>.
6+
Support on **code contribution** is available at <https://devdocs.jabref.org/contributing>.
7+
8+
General overview about contributing for programmers and non-programmers is available at <https://contribute.jabref.org>.
89

910
## Pull Request Process
1011

build.gradle

Lines changed: 27 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010

1111
id 'me.champeau.gradle.jmh' version '0.5.3'
1212

13-
id 'org.javamodularity.moduleplugin' version '1.8.11'
13+
id 'org.javamodularity.moduleplugin' version '1.8.12'
1414

1515
id 'org.openjfx.javafxplugin' version '0.0.13'
1616

@@ -85,7 +85,6 @@ repositories {
8585
}
8686

8787
configurations {
88-
antlr3
8988
antlr4
9089
// TODO: Remove the following workaround for split error messages such as
9190
// error: module java.xml.bind reads package javax.annotation from both jsr305 and java.annotation
@@ -100,7 +99,7 @@ dependencyLocking {
10099
}
101100

102101
javafx {
103-
version = "18.0.1"
102+
version = "18.0.2"
104103
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing' ]
105104
}
106105

@@ -116,11 +115,11 @@ dependencies {
116115
implementation 'org.apache.pdfbox:fontbox:3.0.0-RC1'
117116
implementation 'org.apache.pdfbox:xmpbox:3.0.0-RC1'
118117

119-
implementation 'org.apache.lucene:lucene-core:9.2.0'
120-
implementation 'org.apache.lucene:lucene-queryparser:9.2.0'
121-
implementation 'org.apache.lucene:lucene-queries:9.2.0'
122-
implementation 'org.apache.lucene:lucene-analysis-common:9.2.0'
123-
implementation 'org.apache.lucene:lucene-highlighter:9.2.0'
118+
implementation 'org.apache.lucene:lucene-core:9.3.0'
119+
implementation 'org.apache.lucene:lucene-queryparser:9.3.0'
120+
implementation 'org.apache.lucene:lucene-queries:9.3.0'
121+
implementation 'org.apache.lucene:lucene-analysis-common:9.3.0'
122+
implementation 'org.apache.lucene:lucene-highlighter:9.3.0'
124123

125124
implementation group: 'org.apache.commons', name: 'commons-csv', version: '1.9.0'
126125
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
@@ -129,19 +128,16 @@ dependencies {
129128
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.4.1'
130129

131130
// required for reading write-protected PDFs - see https://github.com/JabRef/jabref/pull/942#issuecomment-209252635
132-
implementation 'org.bouncycastle:bcprov-jdk18on:1.71'
131+
implementation 'org.bouncycastle:bcprov-jdk18on:1.71.1'
133132

134133
implementation 'commons-cli:commons-cli:1.5.0'
135134

136-
implementation 'org.libreoffice:libreoffice:7.3.4'
137-
implementation 'org.libreoffice:unoloader:7.3.4'
135+
implementation 'org.libreoffice:libreoffice:7.4.0'
136+
implementation 'org.libreoffice:unoloader:7.4.0'
138137

139-
implementation 'io.github.java-diff-utils:java-diff-utils:4.11'
138+
implementation 'io.github.java-diff-utils:java-diff-utils:4.12'
140139
implementation 'info.debatty:java-string-similarity:2.0.0'
141140

142-
antlr3 'org.antlr:antlr:3.5.3'
143-
implementation 'org.antlr:antlr-runtime:3.5.3'
144-
145141
antlr4 'org.antlr:antlr4:4.9.3'
146142
implementation 'org.antlr:antlr4-runtime:4.9.3'
147143

@@ -152,7 +148,7 @@ dependencies {
152148

153149
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.6'
154150

155-
implementation 'org.postgresql:postgresql:42.4.0'
151+
implementation 'org.postgresql:postgresql:42.5.0'
156152

157153
implementation ('com.oracle.ojdbc:ojdbc10:19.3.0.0') {
158154
// causing module issues
@@ -178,13 +174,13 @@ dependencies {
178174
implementation 'com.jfoenix:jfoenix:9.0.10'
179175
implementation 'org.controlsfx:controlsfx:11.1.1'
180176

181-
implementation 'org.jsoup:jsoup:1.15.1'
182-
implementation 'com.konghq:unirest-java:3.13.10'
177+
implementation 'org.jsoup:jsoup:1.15.3'
178+
implementation 'com.konghq:unirest-java:3.13.11'
183179

184-
implementation 'org.slf4j:slf4j-api:2.0.0-alpha7'
185-
implementation "org.tinylog:tinylog-api:2.4.1"
186-
implementation "org.tinylog:slf4j-tinylog:2.4.1"
187-
implementation "org.tinylog:tinylog-impl:2.4.1"
180+
implementation 'org.slf4j:slf4j-api:2.0.0'
181+
implementation "org.tinylog:tinylog-api:2.5.0"
182+
implementation "org.tinylog:slf4j-tinylog:2.5.0"
183+
implementation "org.tinylog:tinylog-impl:2.5.0"
188184

189185
implementation 'de.undercouch:citeproc-java:3.0.0-alpha.6'
190186

@@ -208,10 +204,10 @@ dependencies {
208204
implementation group: 'net.harawata', name: 'appdirs', version: '1.2.1'
209205

210206
testImplementation 'io.github.classgraph:classgraph:4.8.149'
211-
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
212-
testImplementation 'org.junit.platform:junit-platform-launcher:1.8.2'
207+
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
208+
testImplementation 'org.junit.platform:junit-platform-launcher:1.9.0'
213209

214-
testImplementation 'org.mockito:mockito-core:4.6.1'
210+
testImplementation 'org.mockito:mockito-core:4.7.0'
215211
testImplementation 'org.xmlunit:xmlunit-core:2.9.0'
216212
testImplementation 'org.xmlunit:xmlunit-matchers:2.9.0'
217213
testRuntimeOnly 'com.tngtech.archunit:archunit-junit5-engine:0.23.1'
@@ -220,7 +216,7 @@ dependencies {
220216
testImplementation "org.testfx:testfx-junit5:4.0.16-alpha"
221217
testImplementation "org.hamcrest:hamcrest-library:2.2"
222218

223-
checkstyle 'com.puppycrawl.tools:checkstyle:10.3.1'
219+
checkstyle 'com.puppycrawl.tools:checkstyle:10.3.3'
224220
// xjc needs the runtime as well for the ant task, otherwise it fails
225221
xjc group: 'org.glassfish.jaxb', name: 'jaxb-xjc', version: '3.0.2'
226222
xjc group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '3.0.2'
@@ -273,14 +269,14 @@ task generateSource(dependsOn: ["generateBstGrammarSource",
273269
}
274270

275271
tasks.register("generateBstGrammarSource", JavaExec) {
276-
main = "org.antlr.Tool"
277-
classpath = configurations.antlr3
272+
main = "org.antlr.v4.Tool"
273+
classpath = configurations.antlr4
278274
group = "JabRef"
279-
description = 'Generates BstLexer.java and BstParser.java from the Bst.g grammar file using antlr3.'
275+
description = 'Generates BstLexer.java and BstParser.java from the Bst.g grammar file using antlr4.'
280276

281-
inputs.dir('src/main/antlr3/org/jabref/bst/')
277+
inputs.dir('src/main/antlr4/org/jabref/bst/')
282278
outputs.dir("src-gen/main/java/org/jabref/logic/bst/")
283-
args = ["-o", "src-gen/main/java/org/jabref/logic/bst/" , "$projectDir/src/main/antlr3/org/jabref/bst/Bst.g" ]
279+
args = ["-o", "src-gen/main/java/org/jabref/logic/bst/", "-visitor", "-no-listener", "-package", "org.jabref.logic.bst", "$projectDir/src/main/antlr4/org/jabref/bst/Bst.g4"]
284280
}
285281

286282
tasks.register("generateSearchGrammarSource", JavaExec) {

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88
dependencies {
99
implementation 'com.h2database:h2-mvstore:2.1.214'
1010
implementation 'org.apache.commons:commons-csv:1.9.0'
11-
implementation 'org.slf4j:slf4j-api:2.0.0-alpha7'
11+
implementation 'org.slf4j:slf4j-api:2.0.0'
1212
}
1313

1414
sourceSets{

buildres/csl/csl-locales/.github/workflows/merge.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ jobs:
136136

137137
- name: Bump version and push tag
138138
id: tag_version
139-
uses: mathieudutour/github-tag-action@v5.6
139+
uses: mathieudutour/github-tag-action@v6.0
140140
with:
141141
github_token: ${{ secrets.GITHUB_TOKEN }}
142142
default_bump: patch
143143
if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true')
144144

145145
- name: Create a GitHub release
146-
uses: softprops/action-gh-release@v0.1.14
146+
uses: softprops/action-gh-release@v1
147147
env:
148148
github_token: ${{ secrets.GITHUB_TOKEN }}
149149
with:

buildres/csl/csl-styles/.github/workflows/merge.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ jobs:
136136

137137
- name: Bump version and push tag
138138
id: tag_version
139-
uses: mathieudutour/github-tag-action@v5.6
139+
uses: mathieudutour/github-tag-action@v6.0
140140
with:
141141
github_token: ${{ secrets.GITHUB_TOKEN }}
142142
default_bump: patch
143143
if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true')
144144

145145
- name: Create a GitHub release
146-
uses: softprops/action-gh-release@v0.1.14
146+
uses: softprops/action-gh-release@v1
147147
env:
148148
github_token: ${{ secrets.GITHUB_TOKEN }}
149149
with:

0 commit comments

Comments
 (0)