From d6a8ab6a058d46126d7ec1bda595bd7d67a1ad21 Mon Sep 17 00:00:00 2001 From: thespad Date: Fri, 26 Apr 2024 15:11:22 +0100 Subject: [PATCH] Bump actions to v7.0.2 --- .github/dependabot.yml | 11 +++++++++++ .github/workflows/call-baseimage-update.yml | 2 +- .github/workflows/call-build-image.yml | 4 ++-- .github/workflows/call-check-and-release.yml | 2 +- .github/workflows/permissions.yml | 10 ++++++++++ .github/workflows/stale.yml | 2 +- docker-bake.hcl | 14 ++------------ 7 files changed, 28 insertions(+), 17 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/permissions.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..724eece --- /dev/null +++ b/.github/dependabot.yml @@ -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" \ No newline at end of file diff --git a/.github/workflows/call-baseimage-update.yml b/.github/workflows/call-baseimage-update.yml index 84c5989..21e50bf 100644 --- a/.github/workflows/call-baseimage-update.yml +++ b/.github/workflows/call-baseimage-update.yml @@ -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" diff --git a/.github/workflows/call-build-image.yml b/.github/workflows/call-build-image.yml index cb711c4..acea0bc 100644 --- a/.github/workflows/call-build-image.yml +++ b/.github/workflows/call-build-image.yml @@ -7,7 +7,7 @@ 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" @@ -15,4 +15,4 @@ jobs: release_url: "https://api.github.com/repos/DustinBrett/daedalOS/commits/main" target-arch: "all" secrets: - scarf_token: ${{ secrets.SCARF_TOKEN }} \ No newline at end of file + OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} diff --git a/.github/workflows/call-check-and-release.yml b/.github/workflows/call-check-and-release.yml index bc743d5..d3ed890 100644 --- a/.github/workflows/call-check-and-release.yml +++ b/.github/workflows/call-check-and-release.yml @@ -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" diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml new file mode 100644 index 0000000..1447bc5 --- /dev/null +++ b/.github/workflows/permissions.yml @@ -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 diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1806420..693e3e6 100755 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -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." diff --git a/docker-bake.hcl b/docker-bake.hcl index 7e64af8..5400ab8 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -29,14 +29,6 @@ target "arm64v8" { ] } -target "arm32v7" { - inherits = ["image"] - dockerfile = "Dockerfile.armhf" - platforms = [ - "linux/arm/v7" - ] -} - target "64" { inherits = ["image"] platforms = [ @@ -48,8 +40,7 @@ target "64" { target "arm" { inherits = ["image"] platforms = [ - "linux/arm64", - "linux/arm/v7" + "linux/arm64" ] } @@ -57,7 +48,6 @@ target "all" { inherits = ["image"] platforms = [ "linux/amd64", - "linux/arm64", - "linux/arm/v7" + "linux/arm64" ] }