Skip to content
This repository was archived by the owner on Aug 8, 2022. It is now read-only.

Commit 472941f

Browse files
committed
Bump actions to v6
1 parent 57ba067 commit 472941f

6 files changed

Lines changed: 49 additions & 155 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66

77
jobs:
88
call-workflow:
9-
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v5
9+
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v6
1010
with:
1111
repo_owner: ${{ github.repository_owner }}
1212
baseimage: "alpine"
13-
basebranch: "master"
14-
app_name: "fail2Ban"
13+
basebranch: "3.14"
14+
app_name: "fail2ban"
1515
secrets:
1616
repo_release_token: ${{ secrets.repo_release_token }}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ on:
77

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v5
10+
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v6
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: fail2ban
1414
release_type: alpine
1515
release_name: fail2Ban
16+
release_url: "v3.14/main"
1617
secrets:
1718
scarf_token: ${{ secrets.SCARF_TOKEN }}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ on:
77

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v2
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v6
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: "fail2ban"
1414
release_type: "alpine"
1515
release_url: "v3.14/main"
1616
release_name: "fail2ban"
17+
target_arch: "all"
1718
secrets:
1819
repo_release_token: ${{ secrets.repo_release_token }}

.vscode/settings.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

docker-bake.hcl

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,51 @@ target "image-local" {
1313
output = ["type=docker"]
1414
}
1515

16-
target "image-all" {
16+
target "amd64" {
17+
inherits = ["image"]
18+
dockerfile = "Dockerfile"
19+
platforms = [
20+
"linux/amd64"
21+
]
22+
}
23+
24+
target "arm64v8" {
25+
inherits = ["image"]
26+
dockerfile = "Dockerfile.aarch64"
27+
platforms = [
28+
"linux/arm64"
29+
]
30+
}
31+
32+
target "arm32v7" {
33+
inherits = ["image"]
34+
dockerfile = "Dockerfile.armhf"
35+
platforms = [
36+
"linux/arm/v7"
37+
]
38+
}
39+
40+
target "64" {
1741
inherits = ["image"]
1842
platforms = [
1943
"linux/amd64",
44+
"linux/arm64"
45+
]
46+
}
47+
48+
target "arm" {
49+
inherits = ["image"]
50+
platforms = [
2051
"linux/arm64",
2152
"linux/arm/v7"
2253
]
23-
}
54+
}
55+
56+
target "all" {
57+
inherits = ["image"]
58+
platforms = [
59+
"linux/amd64",
60+
"linux/arm64",
61+
"linux/arm/v7"
62+
]
63+
}

readme-vars.yml

Lines changed: 0 additions & 142 deletions
This file was deleted.

0 commit comments

Comments
 (0)