Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
tar czf ./artifact_output/formatted-code.tgz --exclude=./.git --exclude=./artifact_output .
shell: bash
- name: Upload formatted code artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: formatted-code-archive
path: ./artifact_output/formatted-code.tgz
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
tar czf ./artifact_output/documentation.tgz --exclude=./.git --exclude=./artifact_output .
shell: bash
- name: Upload documentation artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: documentation-archive
path: ./artifact_output/documentation.tgz
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
- name: Generate Luacov report
run: luacov -c .luacov
- name: Upload coverage report artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-files
path: |
Expand All @@ -199,7 +199,7 @@ jobs:
ref: ${{ github.head_ref || github.ref }} # Checkout the appropriate branch/PR head

- name: Download formatted code
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: formatted-code-archive
path: temp_lint
Expand All @@ -225,7 +225,7 @@ jobs:
shell: bash

- name: Download documentation
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: documentation-archive
path: temp_docs
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
shell: bash

- name: Download coverage files
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: coverage-files
path: temp_coverage
Expand Down
Loading