Skip to content

Commit

Permalink
Merge pull request #11 from linuxserver-labs/actionsv7
Browse files Browse the repository at this point in the history
  • Loading branch information
Roxedus authored Apr 27, 2024
2 parents 4ec8cc3 + c693152 commit 74cc662
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 17 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion .github/workflows/call-baseimage-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
baseimage: "alpine"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/call-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:

jobs:
call-workflow:
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v6
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7.0.2
with:
repo_owner: ${{ github.repository_owner }}
app_name: "plextraktsync"
release_type: "script"
target-arch: "64"
secrets:
scarf_token: ${{ secrets.SCARF_TOKEN }}
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/call-check-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "plextraktsync"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v3
- 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."
Expand Down
14 changes: 2 additions & 12 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,6 @@ target "arm64v8" {
]
}

target "arm32v7" {
inherits = ["image"]
dockerfile = "Dockerfile.armhf"
platforms = [
"linux/arm/v7"
]
}

target "64" {
inherits = ["image"]
platforms = [
Expand All @@ -48,16 +40,14 @@ target "64" {
target "arm" {
inherits = ["image"]
platforms = [
"linux/arm64",
"linux/arm/v7"
"linux/arm64"
]
}

target "all" {
inherits = ["image"]
platforms = [
"linux/amd64",
"linux/arm64",
"linux/arm/v7"
"linux/arm64"
]
}

0 comments on commit 74cc662

Please sign in to comment.