diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..724eece --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/call-baseimage-update.yml b/.github/workflows/call-baseimage-update.yml index c29caa9..feb47da 100644 --- a/.github/workflows/call-baseimage-update.yml +++ b/.github/workflows/call-baseimage-update.yml @@ -7,7 +7,7 @@ on: jobs: call-workflow: - uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v6 + uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v7.0.2 with: repo_owner: ${{ github.repository_owner }} app_name: "monit" diff --git a/.github/workflows/call-build-image.yml b/.github/workflows/call-build-image.yml index c8ff891..1b433c8 100644 --- a/.github/workflows/call-build-image.yml +++ b/.github/workflows/call-build-image.yml @@ -8,7 +8,7 @@ on: jobs: call-workflow: - uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7 + uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7.0.2 with: repo_owner: ${{ github.repository_owner }} app_name: "monit" diff --git a/.github/workflows/call-check-and-release.yml b/.github/workflows/call-check-and-release.yml index 56661d9..24f3e3d 100644 --- a/.github/workflows/call-check-and-release.yml +++ b/.github/workflows/call-check-and-release.yml @@ -7,7 +7,7 @@ on: jobs: call-workflow: - uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v6 + uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v7.0.2 with: repo_owner: ${{ github.repository_owner }} app_name: "monit" diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1806420..693e3e6 100755 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v1 + - uses: actions/stale@v9 with: stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." diff --git a/README.md b/README.md index dbbbd33..1a6fa67 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ More info at [monit](https://mmonit.com/monit/#documentation). Here are some example snippets to help you get started creating a container. -### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) +### docker compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) ```yaml --- @@ -167,10 +167,10 @@ Below are the instructions for updating containers: ### Via Docker Compose -* Update all images: `docker-compose pull` - * or update a single image: `docker-compose pull monit` -* Let compose update all containers as necessary: `docker-compose up -d` - * or update a single container: `docker-compose up -d monit` +* Update all images: `docker compose pull` + * or update a single image: `docker compose pull monit` +* Let compose update all containers as necessary: `docker compose up -d` + * or update a single container: `docker compose up -d monit` * You can also remove the old dangling images: `docker image prune` ### Via Docker Run