1010 matrix : ${{ steps.versions.outputs.matrix }}
1111 steps :
1212 - name : Checkout
13- uses : actions/checkout@v4
13+ uses : actions/checkout@v5
1414 - name : Fetch remote refs
1515 run : git fetch origin
1616 - name : Discover versions
@@ -41,13 +41,13 @@ jobs:
4141 echo "Branch ${{ matrix.version.branch }} -> section ${{ matrix.version.section }} (SHA: $SHA)"
4242 - name : Cache version docs
4343 id : cache
44- uses : actions/cache@v4
44+ uses : actions/cache@v5
4545 with :
4646 path : docs/versioned_docs/${{ matrix.version.section }}
4747 key : version-docs-${{ hashFiles('scripts/docs/*.py', 'scripts/docs/templates/**', 'docs/*_template.md', 'docs/layouts/shortcodes/**') }}-${{ matrix.version.section }}-${{ steps.sha.outputs.sha }}
4848 - name : Checkout
4949 if : steps.cache.outputs.cache-hit != 'true'
50- uses : actions/checkout@v4
50+ uses : actions/checkout@v5
5151 - name : Fetch target branch
5252 if : steps.cache.outputs.cache-hit != 'true'
5353 run : git fetch origin ${{ matrix.version.branch }}
5757 git checkout origin/${{ matrix.version.branch }} -- gooddata-api-client/ packages/gooddata-sdk/ packages/gooddata-pandas/
5858 - name : Setup Python
5959 if : steps.cache.outputs.cache-hit != 'true'
60- uses : actions/setup-python@v5
60+ uses : actions/setup-python@v6
6161 with :
6262 python-version-file : " .python-version"
6363 cache : ' pip'
7171 if : steps.cache.outputs.cache-hit != 'true'
7272 run : bash scripts/generate-single-version.sh "origin/${{ matrix.version.branch }}" "${{ matrix.version.section }}"
7373 - name : Upload version artifact
74- uses : actions/upload-artifact@v4
74+ uses : actions/upload-artifact@v5
7575 with :
7676 name : version-${{ matrix.version.section }}
7777 path : docs/versioned_docs/${{ matrix.version.section }}
8383 runs-on : ubuntu-latest
8484 steps :
8585 - name : Checkout
86- uses : actions/checkout@v4
86+ uses : actions/checkout@v5
8787 with :
8888 submodules : recursive
8989 - name : Setup GO
9292 go-version : ' >=1.20.1'
9393 cache : false
9494 - name : Cache Go modules
95- uses : actions/cache@v4
95+ uses : actions/cache@v5
9696 with :
9797 path : ~/go/pkg/mod
9898 key : go-mod-${{ hashFiles('docs/go.sum') }}
@@ -109,15 +109,15 @@ jobs:
109109 working-directory : ./docs
110110 run : npm ci
111111 - name : Download version artifacts
112- uses : actions/download-artifact@v4
112+ uses : actions/download-artifact@v5
113113 with :
114114 pattern : version-*
115115 path : docs/versioned_docs-raw/
116116 - name : Assemble versioned docs
117117 working-directory : ./docs
118118 run : bash ../scripts/assemble-versions.sh
119119 - name : Cache Hugo resources
120- uses : actions/cache@v4
120+ uses : actions/cache@v5
121121 with :
122122 path : docs/resources/_gen
123123 key : hugo-resources-${{ hashFiles('docs/go.sum', 'docs/config/**') }}
0 commit comments