Skip to content

Commit fa5242a

Browse files
committed
updated all github actions
1 parent 2529020 commit fa5242a

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

.github/workflows/lts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
- uses: actions/checkout@v4
2424

2525
- name: Auto-format
26-
uses: Ortus-Solutions/[email protected].2
26+
uses: Ortus-Solutions/[email protected].3
2727
with:
2828
cmd: run-script format
2929

3030
- name: Commit Format Changes
31-
uses: stefanzweifel/git-auto-commit-action@v4
31+
uses: stefanzweifel/git-auto-commit-action@v5
3232
with:
3333
commit_message: Apply cfformat changes
3434
push_options: --force

.github/workflows/release.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
printf "DB_CONNECTIONSTRING=jdbc:mysql://127.0.0.1:3306/contentbox?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&useLegacyDatetimeCode=true\n" >> .env
103103
104104
- name: Download Test Artifacts
105-
uses: actions/download-artifact@v2
105+
uses: actions/download-artifact@v4
106106
if: env.SNAPSHOT == 'true'
107107
with:
108108
path: tests/results
@@ -140,7 +140,7 @@ jobs:
140140
working-directory: build/build-contentbox
141141

142142
- name: Commit Changelog [unreleased] with latest version
143-
uses: EndBug/[email protected].1
143+
uses: EndBug/[email protected].4
144144
if: env.SNAPSHOT == 'false'
145145
with:
146146
author_name: Github Actions
@@ -149,7 +149,7 @@ jobs:
149149
add: changelog.md
150150

151151
- name: Tag Version
152-
uses: rickstaa/action-create-tag@v1.6.1
152+
uses: rickstaa/action-create-tag@v1.7.2
153153
if: env.SNAPSHOT == 'false'
154154
with:
155155
tag: "v${{ env.VERSION }}"
@@ -158,7 +158,7 @@ jobs:
158158

159159
- name: Upload Build Artifacts
160160
if: success()
161-
uses: actions/upload-artifact@v3
161+
uses: actions/upload-artifact@v4
162162
with:
163163
name: contentbox-variants
164164
path: |
@@ -196,7 +196,7 @@ jobs:
196196
cd $ROOT_DIR/build/build-contentbox/installer-module && box forgebox publish
197197
198198
- name: Create Github Release
199-
uses: taiki-e/create-gh-release-action@v1.6.2
199+
uses: taiki-e/create-gh-release-action@v1.8.0
200200
continue-on-error: true
201201
if: env.SNAPSHOT == 'false'
202202
with:
@@ -227,13 +227,13 @@ jobs:
227227
needs: [ build ]
228228
steps:
229229
- name: Checkout Development Repository
230-
uses: actions/checkout@v3
230+
uses: actions/checkout@v4
231231
if: env.LTS == 'false'
232232
with:
233233
ref: development
234234

235235
- name: Checkout LTS Repository
236-
uses: actions/checkout@v3
236+
uses: actions/checkout@v4
237237
if: env.LTS == 'true'
238238

239239
- name: Setup CommandBox
@@ -242,7 +242,7 @@ jobs:
242242
forgeboxAPIKey: ${{ secrets.FORGEBOX_TOKEN }}
243243

244244
- name: Download build artifacts
245-
uses: actions/download-artifact@v2
245+
uses: actions/download-artifact@v4
246246
with:
247247
name: contentbox-variants
248248
path: .tmp
@@ -262,7 +262,7 @@ jobs:
262262
git pull
263263
264264
- name: Commit Version Bump
265-
uses: EndBug/[email protected].1
265+
uses: EndBug/[email protected].4
266266
with:
267267
author_name: Github Actions
268268
author_email: [email protected]

.github/workflows/snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: box run-script format
3333

3434
- name: Commit Format Changes
35-
uses: stefanzweifel/git-auto-commit-action@v4
35+
uses: stefanzweifel/git-auto-commit-action@v5
3636
with:
3737
commit_message: Apply cfformat changes
3838
push_options: --force

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128

129129
- name: Upload Test Results Artifacts
130130
if: always()
131-
uses: actions/upload-artifact@v3
131+
uses: actions/upload-artifact@v4
132132
with:
133133
name: contentbox-test-results-${{ matrix.cfengine }}
134134
path: |
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: Upload Debugging Info To Artifacts
165165
if: ${{ failure() && !startsWith( 'pull_request', github.event_name ) }}
166-
uses: actions/upload-artifact@v3
166+
uses: actions/upload-artifact@v4
167167
with:
168168
name: Failure Debugging Info - ${{ matrix.cfengine }}
169169
path: |

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Updated
13+
14+
- All github actions
15+
1216
### Bugs
1317

18+
- [CONTENTBOX-1506](https://ortussolutions.atlassian.net/browse/CONTENTBOX-1506) Updated all server.jsons to use \`env\` for the ortus orm extension since the latest lucee build broken extensions via jvm args
1419
- [CONTENTBOX-1505](https://ortussolutions.atlassian.net/browse/CONTENTBOX-1505) RenderView widget exception when using \`view\(\)\` to render the view
1520

1621
## [6.0.2] - 2024-01-15

0 commit comments

Comments
 (0)