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
File renamed without changes.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
version: 2
updates:
- package-ecosystem: github-actions
cooldown:
default-days: 21
directory: /
schedule:
interval: daily
- package-ecosystem: gomod
cooldown:
default-days: 21
directory: /
schedule:
interval: daily
8 changes: 7 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabledManagers": ["dockerfile", "docker-compose"],
"extends": ["config:recommended", ":disableDependencyDashboard", "docker:pinDigests"]
"extends": [
"config:recommended",
":disableDependencyDashboard",
"docker:pinDigests"
],
"schedule": ["on sunday"],
"minimumReleaseAge": "21 days"
}
13 changes: 13 additions & 0 deletions .github/workflows/verify-dockerfile-refreshed-at-updated.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Verify Dockerfile REFRESHED_AT Updated

on:
pull_request:

permissions: {}

jobs:
verify-dockerfiles:
name: Verify Dockerfiles REFRESHED_AT Updated
permissions:
contents: read
uses: senzing-factory/build-resources/.github/workflows/verify-dockerfile-refreshed-at-updated.yaml@v3
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ go.work
# Visual Studio code
.vscode/*
!.vscode/cspell.json
!.vscode/settings.json
*.code-workspace
.history

Expand Down
42 changes: 22 additions & 20 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,68 +2,70 @@
"version": "0.2",
"language": "en",
"words": [
"CCLA",
"CFLAGS",
"CODEOWNER",
"CONFIGPATH",
"DYLD",
"GOPATH",
"ICLA",
"LDFLAGS",
"OSARCH",
"OSTYPE",
"RESOURCEPATH",
"SENZINGSDK",
"SUPPORTPATH",
"SZSDK",
"Senzing",
"Szconfig",
"Szdiagnostic",
"Szengine",
"Szproduct",
"USERPROFILE",
"andrewslotin",
"aquilax",
"buildx",
"CCLA",
"CFLAGS",
"cmdhelping",
"CODEOWNER",
"CONFIGPATH",
"cooldown",
"covermode",
"coverpkg",
"coverprofile",
"dockerfiles",
"dockerhub",
"dockter",
"docktermj",
"DYLD",
"esbenp",
"examplepackage",
"godoc",
"golangci",
"gomod",
"GOPATH",
"goroutines",
"gosec",
"gotest",
"gotestfmt",
"gotesttools",
"govulncheck",
"ICLA",
"LDFLAGS",
"myqueue",
"OSARCH",
"OSTYPE",
"pkill",
"pydevproject",
"rabbitmq",
"RESOURCEPATH",
"rootfs",
"Senzing",
"SENZINGSDK",
"stackoverflow",
"stretchr",
"SUPPORTPATH",
"szapi",
"Szconfig",
"szconfigmanager",
"szconfigmgr",
"Szdiagnostic",
"Szengine",
"szerror",
"szerrors",
"szerrortypes",
"szhelpers",
"szinterface",
"Szproduct",
"SZSDK",
"taskkill",
"testcoverage",
"testdata",
"testrecords",
"truthset",
"unmarshalling",
"USERPROFILE",
"wraperror"
],
"ignorePaths": [
Expand Down
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true
}
Loading