From b16614048bd61f82b03c532b0200b0f148c86d50 Mon Sep 17 00:00:00 2001 From: Matthias Pohl Date: Thu, 28 Mar 2024 17:53:03 +0100 Subject: [PATCH 1/3] Use SHA instead of Docker version tag for base image to allow for consistent code execution. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb4a185..2d61258 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ -FROM drinternet/rsync:v1.4.4 +# drinternet/rsync@v1.4.4 +FROM drinternet/rsync@sha256:15b2949838074bd93c49421c22380396a0cd53a322439e799ac87afcadcfe234 # Copy entrypoint COPY entrypoint.sh /entrypoint.sh From 13aa4f9f57bf89d5e04cf7cf1dd1dbb1e5a13fa5 Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Sat, 30 Mar 2024 10:46:13 +0100 Subject: [PATCH 2/3] update year to 2024 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 86b9855..3907af1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ MIT License Copyright (c) 2019-2022 Contention -Copyright (c) 2019-2022 Burnett01 +Copyright (c) 2019-2024 Burnett01 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 93c0d7acae56bb1b353ef070e28ba52cfa0f743c Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Sat, 30 Mar 2024 10:49:50 +0100 Subject: [PATCH 3/3] upd: mention version 7.0.1 --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index eb393ec..f3fca49 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ This action needs secret variables for the ssh private key of your key pair. The For simplicity, we are using `DEPLOY_*` as the secret variables throughout the examples. +## Current Version: 7.0.1 + ## Example usage Simple: @@ -57,7 +59,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: rsync deployments - uses: burnett01/rsync-deployments@7.0.0 + uses: burnett01/rsync-deployments@7.0.1 with: switches: -avzr --delete path: src/ @@ -76,7 +78,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: rsync deployments - uses: burnett01/rsync-deployments@7.0.0 + uses: burnett01/rsync-deployments@7.0.1 with: switches: -avzr --delete --exclude="" --include="" --filter="" path: src/ @@ -96,7 +98,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: rsync deployments - uses: burnett01/rsync-deployments@7.0.0 + uses: burnett01/rsync-deployments@7.0.1 with: switches: -avzr --delete path: src/ @@ -116,7 +118,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: rsync deployments - uses: burnett01/rsync-deployments@7.0.0 + uses: burnett01/rsync-deployments@7.0.1 with: switches: -avzr --delete path: src/ @@ -142,7 +144,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: rsync deployments - uses: burnett01/rsync-deployments@7.0.0 + uses: burnett01/rsync-deployments@7.0.1 with: switches: -avzr --delete legacy_allow_rsa_hostkeys: "true"