Skip to content

Commit 2070865

Browse files
authored
Merge pull request #11 from linuxserver-labs/Actions-v7
2 parents f214f64 + 48792b3 commit 2070865

File tree

6 files changed

+20
-9
lines changed

6 files changed

+20
-9
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/call-baseimage-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v6
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v7.0.2
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: "monit"

.github/workflows/call-build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
call-workflow:
11-
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7
11+
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7.0.2
1212
with:
1313
repo_owner: ${{ github.repository_owner }}
1414
app_name: "monit"

.github/workflows/call-check-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v6
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v7.0.2
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: "monit"

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/stale@v1
13+
- uses: actions/stale@v9
1414
with:
1515
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."
1616
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."

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ More info at [monit](https://mmonit.com/monit/#documentation).
6666

6767
Here are some example snippets to help you get started creating a container.
6868

69-
### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
69+
### docker compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
7070

7171
```yaml
7272
---
@@ -167,10 +167,10 @@ Below are the instructions for updating containers:
167167

168168
### Via Docker Compose
169169

170-
* Update all images: `docker-compose pull`
171-
* or update a single image: `docker-compose pull monit`
172-
* Let compose update all containers as necessary: `docker-compose up -d`
173-
* or update a single container: `docker-compose up -d monit`
170+
* Update all images: `docker compose pull`
171+
* or update a single image: `docker compose pull monit`
172+
* Let compose update all containers as necessary: `docker compose up -d`
173+
* or update a single container: `docker compose up -d monit`
174174
* You can also remove the old dangling images: `docker image prune`
175175

176176
### Via Docker Run

0 commit comments

Comments
 (0)