Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit d6a8ab6

Browse files
committed
Bump actions to v7.0.2
1 parent b1bd424 commit d6a8ab6

7 files changed

+28
-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,12 +7,12 @@ 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: "daedalos"
1414
release_type: "github_commit"
1515
release_url: "https://api.github.com/repos/DustinBrett/daedalOS/commits/main"
1616
target-arch: "all"
1717
secrets:
18-
scarf_token: ${{ secrets.SCARF_TOKEN }}
18+
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: "daedalos"

.github/workflows/permissions.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Permission check
2+
on:
3+
pull_request_target:
4+
paths:
5+
- '**/run'
6+
- '**/finish'
7+
- '**/check'
8+
jobs:
9+
permission_check:
10+
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

.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@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."

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)