51
51
jobs :
52
52
check-docs-build :
53
53
name : " Test documentation build"
54
- runs-on : ubuntu-24.04
54
+ runs-on : ubuntu-latest
55
55
if : github.repository == 'llvm/llvm-project'
56
56
steps :
57
57
# Don't fetch before checking for file changes to force the file changes
@@ -60,12 +60,12 @@ jobs:
60
60
# a local checkout beforehand.
61
61
- name : Fetch LLVM sources (Push)
62
62
if : ${{ github.event_name == 'push' }}
63
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
63
+ uses : actions/checkout@v4
64
64
with :
65
65
fetch-depth : 1
66
66
- name : Get subprojects that have doc changes
67
67
id : docs-changed-subprojects
68
- uses : step-security/changed-files@3dbe17c78367e7d60f00d78ae6781a35be47b4a1 # v45.0.1
68
+ uses : step-security/changed-files@3dbe17c78367e7d60f00d78ae6781a35be47b4a1
69
69
with :
70
70
files_yaml : |
71
71
llvm:
@@ -98,11 +98,11 @@ jobs:
98
98
- '.github/workflows/docs.yml'
99
99
- name : Fetch LLVM sources (PR)
100
100
if : ${{ github.event_name == 'pull_request' }}
101
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
101
+ uses : actions/checkout@v4
102
102
with :
103
103
fetch-depth : 1
104
104
- name : Setup Python env
105
- uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
105
+ uses : actions/setup-python@v5
106
106
with :
107
107
python-version : ' 3.11'
108
108
cache : ' pip'
@@ -216,7 +216,7 @@ jobs:
216
216
mkdir built-docs/flang
217
217
cp -r flang-build/docs/* built-docs/flang/
218
218
- name : Upload docs
219
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
219
+ uses : actions/upload-artifact@v4
220
220
with :
221
221
name : docs-output
222
222
path : built-docs/
0 commit comments