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

Bump actions to v7.0.2 #3

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,12 +7,12 @@ 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: "daedalos"
release_type: "github_commit"
release_url: "https://api.github.com/repos/DustinBrett/daedalOS/commits/main"
target-arch: "all"
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: "daedalos"
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/permissions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Permission check
on:
pull_request_target:
paths:
- '**/run'
- '**/finish'
- '**/check'
jobs:
permission_check:
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
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@v1
- 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"
]
}
Loading