Skip to content

Commit

Permalink
test renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
fpaul-1A committed Oct 16, 2024
1 parent fe2c92a commit 96e3e99
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .renovaterc.json5
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,20 @@
"io.swagger:swagger-codegen-cli"
],
"enabled": false
},
{
// FIXME Don't do that in prod
"matchDepTypes": [
"*"
],
"enabled": false
},
{
// FIXME Don't do that in prod
"matchDepTypes": [
"github-action"
],
"enabled": true
}
],
"customManagers": [
Expand All @@ -130,8 +144,7 @@
],
"github-actions": {
"fileMatch": [
"(^|/)(__dot__github|workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
".*.ya?ml$"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Setup and Install
description: Sets up Node.js and installs dependencies

runs:
using: "composite"
steps:
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 20
cache: npm
- name: Enable Corepack
shell: bash
run: corepack enable
- name: Install
env:
COREPACK_NPM_REGISTRY: ""
COREPACK_INTEGRITY_KEYS: ""
shell: bash
run: yarn
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Setup and Install
description: Sets up Node.js and installs dependencies

runs:
using: "composite"
steps:
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 20
cache: npm
- name: Enable Corepack
shell: bash
run: corepack enable
- name: Install
env:
COREPACK_NPM_REGISTRY: ""
COREPACK_INTEGRITY_KEYS: ""
shell: bash
run: yarn

0 comments on commit 96e3e99

Please sign in to comment.