Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: yarn workspace @metamask/snaps-execution-environments run build:lavamoat:test
- name: Save "@metamask/snaps-execution-environments" build
id: cache-snaps-execution-environments-build
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: snaps-execution-environments-build-${{ runner.os }}-${{ matrix.node-version }}-${{ github.sha }}
retention-days: 1
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Build
run: yarn build:ci
- name: Save build files
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-source-${{ runner.os }}-${{ github.sha }}
retention-days: 1
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
shell: bash
- name: Upload coverage artifact
if: ${{ matrix.node-version == '22.x' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-${{ steps.get-coverage-folder.outputs.artifact-name }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Build test-snaps
run: yarn workspace @metamask/test-snaps build
- name: Upload build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: publish-release-artifacts-${{ github.sha }}
include-hidden-files: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
run: |
git diff --exit-code yarn.lock || echo "YARN_LOCK_CHANGED=true" >> "$GITHUB_OUTPUT"
- name: Save yarn.lock
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: yarn-lock-${{ needs.prepare.outputs.COMMIT_SHA }}
path: yarn.lock
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: Build packages
run: yarn build:ci
- name: Save packages
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: packages-${{ needs.prepare.outputs.COMMIT_SHA }}
path: |
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
- name: Regenerate LavaMoat policies
run: yarn build:lavamoat:policy
- name: Save LavaMoat policies
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lavamoat-policies-${{ needs.prepare.outputs.COMMIT_SHA }}
path: |
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
- name: Update examples
run: yarn build:examples
- name: Save examples
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: examples-${{ needs.prepare.outputs.COMMIT_SHA }}
path: |
Expand Down
Loading