Skip to content

Commit

Permalink
Merge branch 'main' into issue-9299
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 authored Jul 22, 2024
2 parents 93afab0 + ddf5996 commit 3a657bb
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ jobs:
matrix:
os:
# - ubuntu-latest
- windows-latest
# - windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nissuer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Nissuer
uses: balazsorban44/nissuer@1.7.3
uses: balazsorban44/nissuer@1.10.0
with:
reproduction-comment: ".github/invalid-link.md"
reproduction-hosts: "github.com,gist.github.com,play.swc.rs,evanw.github.io,lightningcss.dev,play.rust-lang.org,stackblitz.com"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
version: "1.7"
force: true

- uses: webfactory/ssh-agent@v0.5.4
- uses: webfactory/ssh-agent@v0.9.0
if: needs.check-if-build-required.outputs.need-build == 'true' && !inputs.skipPublishing
with:
ssh-private-key: ${{ secrets.SWC_BOT_SSH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- run: cargo bump

- uses: webfactory/ssh-agent@v0.5.4
- uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SWC_BOT_SSH }}

Expand Down
43 changes: 43 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"automergeStrategy": "squash",
"automergeType": "pr",
"packageRules": [
{
"matchCurrentVersion": "< 1.0.0",
"separateMinorPatch": true,
"patch": {
"groupName": "all non-breaking updates",
"groupSlug": "non-breaking"
},
"automerge": true
},
{
"matchCurrentVersion": ">= 1.0.0",
"minor": {
"groupName": "all non-breaking updates",
"groupSlug": "non-breaking"
},
"automerge": true
},
{
"groupName": "npm",
"matchDatasources": ["npm"]
},
{
"groupName": "cargo",
"matchDatasources": ["crate"]
},
{
"groupName": "actions",
"matchManagers": ["github-actions"],
"automerge": true
},
{
"matchDepTypes": ["devDependencies"],
"automerge": true
}
],
"ignorePaths": ["packages/core/e2e/fixtures"]
}

0 comments on commit 3a657bb

Please sign in to comment.