Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19b766960e | ||
|
|
a2f568ee9f | ||
|
|
21280c5b1a | ||
|
|
ee12f5064d | ||
|
|
b6da231937 | ||
|
|
3f9cd66dde | ||
|
|
bc04b423b8 | ||
|
|
d2faf876c6 | ||
|
|
ba5153e16c | ||
|
|
4335963a43 | ||
|
|
dd10b8704e | ||
|
|
ead449eb1f | ||
|
|
f83d6f1010 |
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -51,7 +51,7 @@ jobs:
|
||||
|
||||
- run: make test
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: tmp/test-results
|
||||
@@ -93,7 +93,7 @@ jobs:
|
||||
|
||||
- run: make test
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: tmp/test-results
|
||||
|
||||
@@ -1 +1 @@
|
||||
FROM mongo:7.0.4
|
||||
FROM mongo:7.0.7
|
||||
|
||||
5
Makefile
5
Makefile
@@ -1,5 +1,6 @@
|
||||
HARDWARE = $(shell uname -m)
|
||||
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
|
||||
ARCH = $(shell dpkg --print-architecture)
|
||||
SHFMT_VERSION = 3.0.2
|
||||
XUNIT_TO_GITHUB_VERSION = 0.3.0
|
||||
XUNIT_READER_VERSION = 0.1.0
|
||||
@@ -20,8 +21,12 @@ shellcheck:
|
||||
ifneq ($(shell shellcheck --version >/dev/null 2>&1 ; echo $$?),0)
|
||||
ifeq ($(SYSTEM_NAME),darwin)
|
||||
brew install shellcheck
|
||||
else
|
||||
ifeq ($(ARCH),arm64)
|
||||
sudo add-apt-repository 'deb http://ports.ubuntu.com/ubuntu-ports jammy-backports main restricted universe multiverse'
|
||||
else
|
||||
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse'
|
||||
endif
|
||||
sudo rm -rf /var/lib/apt/lists/* && sudo apt-get clean
|
||||
sudo apt-get update -qq && sudo apt-get install -qq -y shellcheck
|
||||
endif
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# dokku mongo [](https://github.com/dokku/dokku-mongo/actions/workflows/ci.yml?query=branch%3Amaster) [](https://webchat.libera.chat/?channels=dokku)
|
||||
|
||||
Official mongo plugin for dokku. Currently defaults to installing [mongo 7.0.4](https://hub.docker.com/_/mongo/).
|
||||
Official mongo plugin for dokku. Currently defaults to installing [mongo 7.0.7](https://hub.docker.com/_/mongo/).
|
||||
|
||||
## Requirements
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[plugin]
|
||||
description = "dokku mongo service plugin"
|
||||
version = "1.36.4"
|
||||
version = "1.36.8"
|
||||
[plugin.config]
|
||||
|
||||
Reference in New Issue
Block a user