Skip to content

Commit

Permalink
Merge pull request #6720 from uschmidt83/patch-1
Browse files Browse the repository at this point in the history
Update GitHub Actions workflow
  • Loading branch information
squidfunk committed Feb 1, 2024
2 parents 5417afc + dcb23d9 commit 39507ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/publishing-your-site.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ contents:
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV # (3)!
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
Expand Down Expand Up @@ -98,11 +98,11 @@ contents:
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
Expand Down

0 comments on commit 39507ac

Please sign in to comment.