Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): bump @actions/core from 1.10.1 to 1.11.1 #1017

Merged
merged 3 commits into from
Nov 4, 2024
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
9 changes: 6 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
with:
name: dist
path: dist
include-hidden-files: true

unit-test:
name: Unit Test
Expand Down Expand Up @@ -82,11 +83,12 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04
- macos-15
- macos-14
- macos-13
- macos-12
- windows-2022
- windows-2019
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -142,14 +144,15 @@ jobs:
- name: Compare
id: compare
continue-on-error: true
run: git diff --no-index --exit-code ./dist/ ./current/
run: git diff --no-index --exit-code ./current/ ./dist/

- name: Report Summary
if: steps.compare.outcome == 'failure'
continue-on-error: true
run: |
echo '# Compare ${{ github.sha }} to ${{ github.base_ref }}' >> $GITHUB_STEP_SUMMARY
echo '```diff' >> $GITHUB_STEP_SUMMARY
git diff --no-index ./dist/ ./current/ >> $GITHUB_STEP_SUMMARY
git diff --no-index ./current/ ./dist/ >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: Report diff
if: steps.compare.outcome == 'failure'
Expand Down
36 changes: 22 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"*.{json,md,yml}": "prettier --write"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
Expand Down
Loading