Skip to content

Commit dc14281

Browse files
chore(deps): bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7ef19b0 commit dc14281

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fi
5050
- name: Upload coverage reports
5151
if: always() && github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x'
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v7
5353
with:
5454
name: coverage-report
5555
path: coverage/
@@ -124,7 +124,7 @@ jobs:
124124
mkdir -p coverage
125125
echo "No coverage data available for base branch (uses yarn)" > coverage/README.md
126126
- name: Upload base coverage
127-
uses: actions/upload-artifact@v6
127+
uses: actions/upload-artifact@v7
128128
with:
129129
name: coverage-base
130130
path: coverage/

.github/workflows/pack-upload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: npm run create-shrinkwrap
2323
- name: Building deb
2424
run: npx oclif pack:deb
25-
- uses: actions/upload-artifact@v6
25+
- uses: actions/upload-artifact@v7
2626
with:
2727
name: packed-deb
2828
path: /home/runner/work/cli/cli/dist
@@ -42,7 +42,7 @@ jobs:
4242
run: npm run create-shrinkwrap
4343
- name: Building tarballs
4444
run: npx oclif pack:tarballs --xz --parallel
45-
- uses: actions/upload-artifact@v6
45+
- uses: actions/upload-artifact@v7
4646
with:
4747
name: packed-tarballs
4848
path: /home/runner/work/cli/cli/dist
@@ -66,7 +66,7 @@ jobs:
6666
- run: |
6767
cd /home/runner/work/cli/cli/dist/deb
6868
/home/runner/work/cli/cli/scripts/sign/deb
69-
- uses: actions/upload-artifact@v6
69+
- uses: actions/upload-artifact@v7
7070
with:
7171
name: signed-deb
7272
path: /home/runner/work/cli/cli/dist

0 commit comments

Comments
 (0)