From 6ed0203828cbabf7fb14b3c1f60c78754bd00363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Krzy=C5=9Bk=C3=B3w?= Date: Sun, 30 Apr 2023 22:21:56 +0200 Subject: [PATCH] Updated GitHub Actions versions in examples --- docs/publishing-your-site.md | 4 ++-- docs/setup/ensuring-data-privacy.md | 6 +++--- docs/setup/setting-up-social-cards.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/publishing-your-site.md b/docs/publishing-your-site.md index 8549c3bb8..43dd4725f 100644 --- a/docs/publishing-your-site.md +++ b/docs/publishing-your-site.md @@ -38,7 +38,7 @@ contents: - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: key: ${{ github.ref }} path: .cache @@ -81,7 +81,7 @@ contents: - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: key: ${{ github.ref }} path: .cache diff --git a/docs/setup/ensuring-data-privacy.md b/docs/setup/ensuring-data-privacy.md index 5f2417963..e71e2e1f4 100644 --- a/docs/setup/ensuring-data-privacy.md +++ b/docs/setup/ensuring-data-privacy.md @@ -495,11 +495,11 @@ carried out. You might want to: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: key: ${{ github.ref }} path: .cache diff --git a/docs/setup/setting-up-social-cards.md b/docs/setup/setting-up-social-cards.md index 48ec14c59..25df723f6 100644 --- a/docs/setup/setting-up-social-cards.md +++ b/docs/setup/setting-up-social-cards.md @@ -244,11 +244,11 @@ whether the social cards need to be regenerated. You might want to: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: key: ${{ github.ref }} path: .cache