Skip to content

Commit

Permalink
Fix artifact upload name (#1663)
Browse files Browse the repository at this point in the history
* Fix artifact upload name

* downgrade to upoadt artifact to v3

---------

Co-authored-by: Javier Viola <[email protected]>
  • Loading branch information
wirednkod and pepoviola authored Jan 10, 2024
1 parent 9c95c5e commit cb8fb0c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ updates:
- 'automerge'
schedule:
interval: daily
ignore:
- dependency-name: "actions/upload-artifact"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 4

- package-ecosystem: npm
Expand All @@ -28,6 +31,8 @@ updates:
update-types: ["version-update:semver-major"]
- dependency-name: "chai"
update-types: ["version-update:semver-major"]
- dependency-name: "actions/upload-artifact"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 4

- package-ecosystem: npm
Expand All @@ -36,6 +41,9 @@ updates:
- 'automerge'
schedule:
interval: daily
ignore:
- dependency-name: "actions/upload-artifact"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 4

- package-ecosystem: github-actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Upload build artifacts
if: ${{ matrix.node-version == '18.x' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}-build-${{ github.sha }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: npm pack
working-directory: "./javascript/packages/utils"
- name: Upload Utils
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: package
path: "./javascript/packages/utils/*.tgz"
Expand All @@ -31,7 +31,7 @@ jobs:
run: npm pack
working-directory: "./javascript/packages/orchestrator"
- name: Upload Orchestrator
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: package
path: "./javascript/packages/orchestrator/*.tgz"
Expand All @@ -40,7 +40,7 @@ jobs:
run: npm pack
working-directory: "./javascript/packages/cli"
- name: Upload CLI
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: package
path: "./javascript/packages/cli/*.tgz"
Expand Down

0 comments on commit cb8fb0c

Please sign in to comment.