From 9b043d99e86ef09e8806e374bd21b47a5b90f1e1 Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 12 Oct 2023 23:24:44 +0100 Subject: [PATCH 01/10] Bumping version to 1.3.13 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ba50e86..bee17c9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.12 \ No newline at end of file +1.3.13 \ No newline at end of file From f9c863908156089dd55ac0043c9869f25ec6b5d6 Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 12 Oct 2023 23:24:46 +0100 Subject: [PATCH 02/10] Updating workflows --- .github/workflows/auto-pr.yml | 2 +- .github/workflows/dev.yml | 12 ++++++------ .github/workflows/publish.yml | 10 +++++----- .github/workflows/update-readme.yml | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index 213d5b8..ae26510 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout Branch ${{ github.ref_name }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create Pull Request uses: bfren/pull-request@v2 diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 52a2766..30844de 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -12,13 +12,13 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 build: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get repository name run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV @@ -31,20 +31,20 @@ jobs: id: version - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push id: docker_build - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: build-args: | BF_IMAGE=${{ env.REPOSITORY_NAME }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6171457..7051bf7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get repository name run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV @@ -36,20 +36,20 @@ jobs: id: version - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push id: docker_build - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: build-args: | BF_IMAGE=${{ env.REPOSITORY_NAME }} diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml index 14fd935..7fc7506 100644 --- a/.github/workflows/update-readme.yml +++ b/.github/workflows/update-readme.yml @@ -15,10 +15,10 @@ jobs: shell: bash - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} From d2a28ac6bf1b9b4a5cde4e58f5fae67dc5efb14d Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 12 Oct 2023 23:30:37 +0100 Subject: [PATCH 03/10] Updating rclone build --- overlay/tmp/RCLONE_BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/tmp/RCLONE_BUILD b/overlay/tmp/RCLONE_BUILD index 674dd54..cde004a 100644 --- a/overlay/tmp/RCLONE_BUILD +++ b/overlay/tmp/RCLONE_BUILD @@ -1 +1 @@ -1.62.2-r4 \ No newline at end of file +1.62.2-r5 \ No newline at end of file From e65b4f67e4f64e0102407b55d53ab118972029ee Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 9 Nov 2023 10:19:29 +0000 Subject: [PATCH 04/10] Bumping version to 2.0.0 --- VERSION | 2 +- VERSION_MAJOR | 2 +- VERSION_MINOR | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index bee17c9..359a5b9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.13 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/VERSION_MAJOR b/VERSION_MAJOR index 56a6051..d8263ee 100644 --- a/VERSION_MAJOR +++ b/VERSION_MAJOR @@ -1 +1 @@ -1 \ No newline at end of file +2 \ No newline at end of file diff --git a/VERSION_MINOR b/VERSION_MINOR index a58941b..415b19f 100644 --- a/VERSION_MINOR +++ b/VERSION_MINOR @@ -1 +1 @@ -1.3 \ No newline at end of file +2.0 \ No newline at end of file From 7769e13b9a5635b429911cabbe5cd850637f1653 Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 9 Nov 2023 10:19:35 +0000 Subject: [PATCH 05/10] Switching -beta to -dev tags --- .github/workflows/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 30844de..c41f623 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -53,7 +53,7 @@ jobs: platforms: linux/amd64,linux/arm/v7,linux/arm64 tags: | bfren/backup:dev - bfren/backup:${{ steps.version.outputs.contents }}-beta + bfren/backup:${{ steps.version.outputs.contents }}-dev - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} From d845872bd1d20a789d50fc08599168d499722faf Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 9 Nov 2023 10:19:39 +0000 Subject: [PATCH 06/10] Enforcing LF line endings --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4ff3bd7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Always use LF endings. +* text eol=lf \ No newline at end of file From 4a922535344d9ed679c839a8df82d21aa0994502 Mon Sep 17 00:00:00 2001 From: bfren Date: Mon, 29 Jan 2024 11:08:08 +0000 Subject: [PATCH 07/10] Updating copyright year to 2024 --- LICENSE | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 3e3fddc..15e615c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022-2023 bfren +Copyright (c) 2022-2024 bfren Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 3371408..97aef69 100644 --- a/README.md +++ b/README.md @@ -68,4 +68,4 @@ Additionally you can use `RCLONE_` to [configure rclone](https://rclone.org/docs ## Copyright -> Copyright (c) 2022-2023 [bfren](https://bfren.dev) (unless otherwise stated) +> Copyright (c) 2022-2024 [bfren](https://bfren.dev) (unless otherwise stated) From 0bc5d3f299ed2cf71bc2da9f70bd3f6284fcd3b8 Mon Sep 17 00:00:00 2001 From: bfren Date: Tue, 30 Jul 2024 16:42:44 +0100 Subject: [PATCH 08/10] Updating workflows --- .github/workflows/dev.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index c41f623..4185526 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -44,7 +44,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: build-args: | BF_IMAGE=${{ env.REPOSITORY_NAME }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7051bf7..dc654d3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -49,7 +49,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: build-args: | BF_IMAGE=${{ env.REPOSITORY_NAME }} From eb6532a6d5cb4f175928d2721cf2fbea9cd79afa Mon Sep 17 00:00:00 2001 From: bfren Date: Mon, 8 Dec 2025 09:13:05 +0000 Subject: [PATCH 09/10] Updating workflow actions --- .github/workflows/update-readme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml index 7fc7506..932a64e 100644 --- a/.github/workflows/update-readme.yml +++ b/.github/workflows/update-readme.yml @@ -24,7 +24,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Update repo description with README.md - uses: peter-evans/dockerhub-description@v3 + uses: peter-evans/dockerhub-description@v5 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} From 2706e8dbe88272254e7c520f354a464f9ece090f Mon Sep 17 00:00:00 2001 From: bfren Date: Thu, 18 Dec 2025 14:16:05 +0000 Subject: [PATCH 10/10] Updating workflow actions --- .github/workflows/workflow-cleanup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow-cleanup.yml b/.github/workflows/workflow-cleanup.yml index 36fcf4f..3bcccd8 100644 --- a/.github/workflows/workflow-cleanup.yml +++ b/.github/workflows/workflow-cleanup.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Delete old workflow runs - uses: bfren/delete-workflow-runs@main + uses: bfren/delete-workflow-runs@v2 with: token: ${{ secrets.GITHUB_TOKEN }} repository: ${{ github.repository }}