Skip to content

Commit 74cc662

Browse files
authored
Merge pull request #11 from linuxserver-labs/actionsv7
2 parents 4ec8cc3 + c693152 commit 74cc662

6 files changed

+18
-17
lines changed

.github/dependabot.yml

+11
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

+1-1
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
baseimage: "alpine"

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v6
10+
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7.0.2
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: "plextraktsync"
1414
release_type: "script"
1515
target-arch: "64"
1616
secrets:
17-
scarf_token: ${{ secrets.SCARF_TOKEN }}
17+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

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

+1-1
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: "plextraktsync"

.github/workflows/stale.yml

+1-1
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@v3
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."

docker-bake.hcl

+2-12
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,6 @@ target "arm64v8" {
2929
]
3030
}
3131

32-
target "arm32v7" {
33-
inherits = ["image"]
34-
dockerfile = "Dockerfile.armhf"
35-
platforms = [
36-
"linux/arm/v7"
37-
]
38-
}
39-
4032
target "64" {
4133
inherits = ["image"]
4234
platforms = [
@@ -48,16 +40,14 @@ target "64" {
4840
target "arm" {
4941
inherits = ["image"]
5042
platforms = [
51-
"linux/arm64",
52-
"linux/arm/v7"
43+
"linux/arm64"
5344
]
5445
}
5546

5647
target "all" {
5748
inherits = ["image"]
5849
platforms = [
5950
"linux/amd64",
60-
"linux/arm64",
61-
"linux/arm/v7"
51+
"linux/arm64"
6252
]
6353
}

0 commit comments

Comments
 (0)