39
39
version : ${{ env.RELEASE_VERSION }}
40
40
steps :
41
41
- name : Checkout repository
42
- uses : actions/checkout@v3
42
+ uses : actions/checkout@v4
43
43
- name : Extract version from release branch name
44
44
if : startsWith(github.event.pull_request.head.ref, 'release/')
45
45
run : |
@@ -61,10 +61,10 @@ jobs:
61
61
changelog : ${{ steps.changelog_reader.outputs.changes }}
62
62
steps :
63
63
- name : Checkout repository
64
- uses : actions/checkout@v3
64
+ uses : actions/checkout@v4
65
65
- name : Extract changelog
66
66
id : changelog_reader
67
- uses : mindsers/changelog-reader-action@v2.2.2
67
+ uses : mindsers/changelog-reader-action@v2
68
68
with :
69
69
version : ${{ needs.extract-version-number.outputs.version }}
70
70
path : ./CHANGELOG.md
87
87
RELEASE_VERSION : ${{ needs.extract-version-number.outputs.version }}
88
88
steps :
89
89
- name : Checkout repository
90
- uses : actions/checkout@v3
90
+ uses : actions/checkout@v4
91
91
- name : Setup Java
92
92
uses : refinedmods/refinedarchitect/.github/actions/setup-java@develop
93
93
- name : Publish to Maven
@@ -106,13 +106,13 @@ jobs:
106
106
RELEASE_VERSION : ${{ needs.extract-version-number.outputs.version }}
107
107
steps :
108
108
- name : Checkout repository
109
- uses : actions/checkout@v3
109
+ uses : actions/checkout@v4
110
110
- name : Setup Java
111
111
uses : refinedmods/refinedarchitect/.github/actions/setup-java@develop
112
112
- name : Build documentation
113
113
run : ./gradlew allJavadoc
114
114
- name : Publish documentation
115
- uses : JamesIves/github-pages-deploy-action@v4.4.1
115
+ uses : JamesIves/github-pages-deploy-action@v4
116
116
with :
117
117
branch : gh-pages
118
118
folder : build/docs/javadoc
@@ -128,7 +128,7 @@ jobs:
128
128
release-url : ${{ steps.gh_release.outputs.url }}
129
129
steps :
130
130
- name : Download artifacts
131
- uses : actions/download-artifact@v2
131
+ uses : actions/download-artifact@v4
132
132
with :
133
133
name : Artifacts
134
134
- name : Deploy to GitHub Releases
@@ -153,7 +153,7 @@ jobs:
153
153
CURSEFORGE_TOKEN : ${{ secrets.CURSEFORGE_TOKEN }}
154
154
steps :
155
155
- name : Checkout repository
156
- uses : actions/checkout@v3
156
+ uses : actions/checkout@v4
157
157
- name : Setup Java
158
158
uses : refinedmods/refinedarchitect/.github/actions/setup-java@develop
159
159
- name : Deploy to CurseForge
@@ -170,7 +170,7 @@ jobs:
170
170
MODRINTH_TOKEN : ${{ secrets.MODRINTH_TOKEN }}
171
171
steps :
172
172
- name : Checkout repository
173
- uses : actions/checkout@v3
173
+ uses : actions/checkout@v4
174
174
- name : Setup Java
175
175
uses : refinedmods/refinedarchitect/.github/actions/setup-java@develop
176
176
- name : Deploy to Modrinth
@@ -200,7 +200,7 @@ jobs:
200
200
if : ${{ inputs.announce == true }}
201
201
steps :
202
202
- name : Announce to Mastodon
203
- uses : rzr/fediverse-action@master
203
+ uses : rzr/fediverse-action@8506cb8a3052fd34b0d93a244888a81c233abf88
204
204
with :
205
205
access-token : ${{ secrets.MASTODON_TOKEN }}
206
206
host : ' anvil.social'
@@ -213,7 +213,7 @@ jobs:
213
213
(startsWith(github.event.pull_request.head.ref, 'release/') || startsWith(github.event.pull_request.head.ref, 'hotfix/'))
214
214
steps :
215
215
- name : Create PR for merging main back into develop
216
- uses : thomaseizinger/create-pull-request@1.0.0
216
+ uses : thomaseizinger/create-pull-request@52baa147b387effeeb9cf04e121227dbfb74994e
217
217
env :
218
218
GITHUB_TOKEN : ${{ secrets.GITFLOW_PUSH_TOKEN }}
219
219
with :
0 commit comments