Skip to content

Commit 0a2e20f

Browse files
committed
ops: bump CI/CD dependencies
bump dependencies and disable automatic command validation for now
1 parent 0e9d93c commit 0a2e20f

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Build and publish project
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
show-progress: false
3232

@@ -221,7 +221,7 @@ jobs:
221221
# Upload artifacts for dry run testing
222222
- name: Upload artifacts
223223
id: upload
224-
uses: actions/upload-artifact@v4
224+
uses: actions/upload-artifact@v7
225225
if: github.event.inputs.dry_run == 'true'
226226
with:
227227
name: "${{ github.event.repository.name }} v${{ github.event.inputs.tag }} Test Builds (Unzip Me)"

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ on:
1313
mc_lower:
1414
description: 'Lower bound of Minecraft version range (exact version), e.g. "1.17"'
1515
required: false
16-
skip_check:
17-
description: 'Set to true to skip command validation'
16+
command_validation:
17+
description: 'Set to true to perform command validation with mecha'
1818
required: false
1919
type: boolean
2020
default: false
@@ -31,7 +31,7 @@ jobs:
3131
name: Validate and build development version
3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
show-progress: false
3737
fetch-depth: 25 # Fetch 25 commits to ensure we have enough history for git describe
@@ -191,7 +191,7 @@ jobs:
191191
192192
# Optionally validate commands
193193
- name: Validate commands
194-
if: ${{ github.event.inputs.skip_check != 'true' }}
194+
if: ${{ github.event.inputs.command_validation == 'true' }}
195195
uses: mcbeet/check-commands@v1
196196
with:
197197
source: .
@@ -275,7 +275,7 @@ jobs:
275275
# Capture and upload artifacts
276276
- name: Upload artifacts
277277
id: upload
278-
uses: actions/upload-artifact@v4
278+
uses: actions/upload-artifact@v7
279279
with:
280280
name: "${{ github.event.repository.name }} v${{ env.TAG }} Development Builds (Unzip Me)"
281281
path: |

0 commit comments

Comments
 (0)