Skip to content

Commit 259518a

Browse files
authored
Merge branch 'main' into dependabot-github_actions-actions-labeler-6
2 parents 36d40f5 + 059bbfd commit 259518a

21 files changed

+907
-955
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ updates:
99
timezone: "Europe/Berlin"
1010
pull-request-branch-name:
1111
separator: "-"
12+
cooldown:
13+
default-days: 3
1214

1315
# Daily: Check minor and patch updates
1416
- package-ecosystem: "npm"
@@ -22,10 +24,14 @@ updates:
2224
separator: "-"
2325
# https://github.com/dependabot/dependabot-core/issues/5226#issuecomment-1179434437
2426
versioning-strategy: increase
27+
cooldown:
28+
default-days: 3
2529
groups:
2630
patch-dependencies:
2731
update-types:
2832
- "patch"
33+
patterns:
34+
- "*"
2935
commitlint:
3036
patterns:
3137
- "@commitlint*"

.github/scripts/publish-npm.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ do
3535
echo "🔑 Authenticated with GITHUB"
3636
elif [[ $REGISTRY == 'NPM' ]]; then
3737
npm config set @db-ui:registry https://registry.npmjs.org/
38-
npm set //registry.npmjs.org/:_authToken "$NPM_TOKEN"
3938
echo "🔑 Authenticated with NPM"
4039
else
4140
echo "Could not authenticate with $REGISTRY"
4241
exit 1
4342
fi
4443
# https://docs.npmjs.com/generating-provenance-statements#example-github-actions-workflow
45-
npm publish --tag "$TAG" db-ui-core-"$VALID_SEMVER_VERSION".tgz --provenance
44+
npm publish --tag "$TAG" db-ui-core-"$VALID_SEMVER_VERSION".tgz
4645
done

.github/workflows/00-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: styfle/cancel-workflow-action@0.12.1
1313

1414
- name: ⬇️ Checkout repo
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: 🔄 Init Cache Default
1818
uses: ./.github/actions/npm-cache

.github/workflows/00-scan-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: ⬇ Checkout repo
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
1414

.github/workflows/01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

.github/workflows/01-get-publish-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
version: ${{ steps.getVersion.outputs.version }}
2626
steps:
2727
- name: ⬇ Checkout repo
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: 🔄 Init Cache
3131
uses: ./.github/actions/npm-cache

.github/workflows/01-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

.github/workflows/01-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

.github/workflows/02-deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
group: ${{ github.workflow }}-${{ github.ref }}
2222
steps:
2323
- name: ⬇ Checkout repo
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: 🔄 Init Cache
2727
uses: ./.github/actions/npm-cache

.github/workflows/03-publish-packages.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id-token: write
2525
steps:
2626
- name: ⬇ Checkout repo
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: 🔄 Init Cache
3030
uses: ./.github/actions/npm-cache
@@ -50,7 +50,6 @@ jobs:
5050
PRE_RELEASE: ${{ inputs.preRelease }}
5151
VALID_SEMVER_VERSION: ${{ inputs.version }}
5252
GITHUB_COMMITISH: ${{ github.event.release.target_commitish }}
53-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
5453
GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5554

5655
- name: ⬆ Upload Package Artifact db-ui-core

0 commit comments

Comments
 (0)