From 7f518bd3a5db36dbd00c24e6916e0a3398244fe8 Mon Sep 17 00:00:00 2001 From: Sven Serlier <85389871+wrt54g@users.noreply.github.com> Date: Thu, 6 Oct 2022 16:40:16 +0200 Subject: [PATCH] Update readme actions --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a2219e7..358fb81 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ steps: Download to a specific directory: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: actions/download-artifact@v3 with: @@ -93,7 +93,7 @@ Example, if there are two artifacts `Artifact-A` and `Artifact-B`, and the direc Download all artifacts to a specific directory ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: actions/download-artifact@v3 with: @@ -107,7 +107,7 @@ steps: Download all artifacts to the current working directory ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: actions/download-artifact@v3 @@ -121,7 +121,7 @@ The `download-path` step output contains information regarding where the artifac ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: actions/download-artifact@v3 id: download @@ -154,7 +154,7 @@ If file permissions and case sensitivity are required, you can `tar` all of your run: tar -cvf my_files.tar /path/to/my/directory - name: 'Upload Artifact' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: my-artifact path: my_files.tar