We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5417afc commit c99f0cbCopy full SHA for c99f0cb
docs/publishing-your-site.md
@@ -35,15 +35,17 @@ contents:
35
runs-on: ubuntu-latest
36
steps:
37
- uses: actions/checkout@v4
38
+ with:
39
+ fetch-depth: 0
40
- name: Configure Git Credentials
41
run: |
42
git config user.name github-actions[bot]
43
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- - uses: actions/setup-python@v4
44
+ - uses: actions/setup-python@v5
45
with:
46
python-version: 3.x
47
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV # (3)!
- - uses: actions/cache@v3
48
+ - uses: actions/cache@v4
49
50
key: mkdocs-material-${{ env.cache_id }}
51
path: .cache
0 commit comments