From db9714c52c931a726c0d3779e4aae0254cae97f0 Mon Sep 17 00:00:00 2001 From: Marketen Date: Wed, 29 Oct 2025 10:53:09 +0100 Subject: [PATCH 1/2] upstream versions --- docker-compose.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 28ef04b..5c88dd3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: build: context: ./immich-server args: - IMMICH_VERSION: release + IMMICH_VERSION: v2.1.0 environment: DB_USERNAME: "postgres" DB_PASSWORD: "postgres" @@ -18,13 +18,11 @@ services: restart: always healthcheck: disable: false - ports: - - "2283:2283" immich-machine-learning: build: context: ./immich-machine-learning args: - IMMICH_VERSION: release + IMMICH_VERSION: v2.1.0 environment: UPLOAD_LOCATION: "./library" volumes: From 1254891a9e389554ab5581589cdace99fc6e00d6 Mon Sep 17 00:00:00 2001 From: Marketen Date: Wed, 29 Oct 2025 10:55:46 +0100 Subject: [PATCH 2/2] add bump upstream workflow --- .github/workflows/auto-check.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/auto-check.yml diff --git a/.github/workflows/auto-check.yml b/.github/workflows/auto-check.yml new file mode 100644 index 0000000..bc20d9a --- /dev/null +++ b/.github/workflows/auto-check.yml @@ -0,0 +1,20 @@ +name: Bump upstream version + +on: + schedule: + - cron: "00 */4 * * *" + workflow_dispatch: + push: + branches: + - "master" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: npx @dappnode/dappnodesdk github-action bump-upstream + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }} + PINATA_SECRET_API_KEY: ${{ secrets.PINATA_SECRET_API_KEY }} \ No newline at end of file