Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
FuhuXia authored Jan 10, 2025
2 parents 2d70e1c + 7ede51e commit 74ac8a9
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
ignore:
# Ignore minor and patch updates
- dependency-name: "*"
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
groups:
# Group all updates together
github-actions:
patterns:
- "*"
4 changes: 2 additions & 2 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
environment: ${{inputs.environ}}
steps:
- name: checkout datagov
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: './catalog'
- name: run task
Expand All @@ -55,7 +55,7 @@ jobs:
cf_password: ${{secrets.CF_SERVICE_AUTH}}
- name: Send notification to Slack
if: ${{ inputs.notification }}
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v2
with:
payload: |
{
Expand Down
2 changes: 1 addition & 1 deletion ckan/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ psycopg2==2.9.3
pycparser==2.22
PyJWT==2.4.0
pyOpenSSL==24.3.0
pyparsing==3.2.0
pyparsing==3.2.1
pyproj==3.4.1
pysaml2==7.0.1
pysolr==3.9.0
Expand Down
1 change: 1 addition & 0 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ applications:
no-route: true
instances: ((fetch-instances))
disk_quota: 1.5G
memory: ((fetch_memory_quota))
command: newrelic-admin run-program sh -c 'while ! ckan harvester fetch-consumer; do sleep 10; done'
health-check-type: process
timeout: 15
Expand Down
1 change: 1 addition & 0 deletions vars.development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fetch-instances: 1
proxy-instances: 1
memory_quota: 750M
gather_memory_quota: 1G
fetch_memory_quota: 300M

new_relic_monitor_mode: false

Expand Down
3 changes: 2 additions & 1 deletion vars.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ ckanext__saml2auth__idp_metadata__local_path: ckan/setup/login.production.idp.xm
web-instances: 3
admin-instances: 1
gather-instances: 1
fetch-instances: 4
fetch-instances: 3
proxy-instances: 2
memory_quota: 800M
gather_memory_quota: 3G
fetch_memory_quota: 500M

new_relic_monitor_mode: true

Expand Down
1 change: 1 addition & 0 deletions vars.staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fetch-instances: 1
proxy-instances: 1
memory_quota: 750M
gather_memory_quota: 3G
fetch_memory_quota: 500M

new_relic_monitor_mode: true

Expand Down

0 comments on commit 74ac8a9

Please sign in to comment.