From 057a69d14781d9113ce646a941f56308876d7239 Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Sat, 1 Jan 2022 19:00:50 +0100 Subject: [PATCH 1/4] Update LICENSE --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 8323eea..86b9855 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ MIT License -Copyright (c) 2019-2021 Contention -Copyright (c) 2019-2021 Burnett01 +Copyright (c) 2019-2022 Contention +Copyright (c) 2019-2022 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 4a950331e53e5b1e366a9fac8ce36c31b49bddff Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Sat, 1 Jan 2022 19:02:50 +0100 Subject: [PATCH 2/4] dropped support for 3.0 --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index 5476fe9..e997f19 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -9,7 +9,7 @@ The following versions are currently being supported with security updates: | 5.x | :white_check_mark: | | 4.1 | :white_check_mark: | | 4.0 | :white_check_mark: | -| 3.0 | :white_check_mark: | +| 3.0 | :x: | | 2.0 | :x: | | 1.0 | :x: | From 6ae12186da91ca6553948d0f086c735a83dc6ed6 Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Sat, 1 Jan 2022 19:07:03 +0100 Subject: [PATCH 3/4] bump version to 5.2 in Readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c5da961..e175348 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This GitHub Action deploys files in `GITHUB_WORKSPACE` to a remote folder via rs Use this action in a CD workflow which leaves deployable code in `GITHUB_WORKSPACE`. -The base-image (drinternet/rsync) of this action is very small and is based on Alpine 3.14.1 (no cache) which results in fast deployments. +The base-image (drinternet/rsync) of this action is very small and is based on Alpine 3.15.0 (no cache) which results in fast deployments. --- @@ -55,7 +55,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: rsync deployments - uses: burnett01/rsync-deployments@5.1 + uses: burnett01/rsync-deployments@5.2 with: switches: -avzr --delete path: src/ @@ -74,7 +74,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: rsync deployments - uses: burnett01/rsync-deployments@5.1 + uses: burnett01/rsync-deployments@5.2 with: switches: -avzr --delete --exclude="" --include="" --filter="" path: src/ @@ -94,7 +94,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: rsync deployments - uses: burnett01/rsync-deployments@5.1 + uses: burnett01/rsync-deployments@5.2 with: switches: -avzr --delete path: src/ @@ -114,7 +114,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: rsync deployments - uses: burnett01/rsync-deployments@5.1 + uses: burnett01/rsync-deployments@5.2 with: switches: -avzr --delete path: src/ From 4afbe87441b11e0d234a06fcd5dd11b29984018f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jan 2022 19:07:48 +0100 Subject: [PATCH 4/4] Bump drinternet/rsync from v1.3.0 to v1.4.0 (#22) Bumps drinternet/rsync from v1.3.0 to v1.4.0. --- updated-dependencies: - dependency-name: drinternet/rsync dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 416972d..4c67b0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM drinternet/rsync:v1.3.0 +FROM drinternet/rsync:v1.4.0 # Copy entrypoint COPY entrypoint.sh /entrypoint.sh