Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
fi
- name: Upload coverage reports
if: always() && github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-report
path: coverage/
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
mkdir -p coverage
echo "No coverage data available for base branch (uses yarn)" > coverage/README.md
- name: Upload base coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-base
path: coverage/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pack-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: npm run create-shrinkwrap
- name: Building deb
run: npx oclif pack:deb
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: packed-deb
path: /home/runner/work/cli/cli/dist
Expand All @@ -42,7 +42,7 @@ jobs:
run: npm run create-shrinkwrap
- name: Building tarballs
run: npx oclif pack:tarballs --xz --parallel
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: packed-tarballs
path: /home/runner/work/cli/cli/dist
Expand All @@ -66,7 +66,7 @@ jobs:
- run: |
cd /home/runner/work/cli/cli/dist/deb
/home/runner/work/cli/cli/scripts/sign/deb
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: signed-deb
path: /home/runner/work/cli/cli/dist
Expand Down
Loading