File tree Expand file tree Collapse file tree 15 files changed +34
-34
lines changed Expand file tree Collapse file tree 15 files changed +34
-34
lines changed Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ jobs:
2323 id : extract_branch
2424
2525 - name : Checkout
26- uses : actions/checkout@v2
26+ uses : actions/checkout@v4
2727
2828 - name : Set up Docker Buildx
29- uses : docker/setup-buildx-action@v1
29+ uses : docker/setup-buildx-action@v3
3030
3131 - name : Log in
32- uses : docker/login-action@v1
32+ uses : docker/login-action@v3
3333 with :
3434 registry : ghcr.io
3535 username : ${{ github.repository_owner }}
3636 password : ${{ secrets.GITHUB_TOKEN }}
3737
3838 - name : Build and push
39- uses : docker/build-push-action@v2
39+ uses : docker/build-push-action@v6
4040 with :
4141 file : .github/workflows/UbuntuDockerfile
4242 push : true
Original file line number Diff line number Diff line change 6363 fetch-depth : 1
6464 - name : Get subprojects that have doc changes
6565 id : docs-changed-subprojects
66- uses : tj-actions/changed-files@v39
66+ uses : tj-actions/changed-files@v45
6767 with :
6868 files_yaml : |
6969 llvm:
9898 with :
9999 fetch-depth : 1
100100 - name : Setup Python env
101- uses : actions/setup-python@v4
101+ uses : actions/setup-python@v5
102102 with :
103103 python-version : ' 3.11'
104104 cache : ' pip'
Original file line number Diff line number Diff line change 2323 version : 12
2424
2525 steps :
26- - uses : actions/checkout@v2
26+ - uses : actions/checkout@v4
2727
2828 - if : matrix.cc == 'clang'
2929 run : |
Original file line number Diff line number Diff line change 7575 CC : ${{ matrix.cc }}
7676 CXX : ${{ matrix.cxx }}
7777 ENABLE_CLANG_TIDY : ${{ matrix.clang_tidy }}
78- - uses : actions/upload-artifact@v3
78+ - uses : actions/upload-artifact@v4
7979 if : always()
8080 with :
8181 name : ${{ matrix.config }}-${{ matrix.cxx }}-results
@@ -124,7 +124,7 @@ jobs:
124124 CC : ${{ matrix.cc }}
125125 CXX : ${{ matrix.cxx }}
126126 ENABLE_CLANG_TIDY : ${{ matrix.clang_tidy }}
127- - uses : actions/upload-artifact@v3
127+ - uses : actions/upload-artifact@v4
128128 if : always() # Upload artifacts even if the build or test suite fails
129129 with :
130130 name : ${{ matrix.config }}-results
@@ -189,7 +189,7 @@ jobs:
189189 CC : clang-18
190190 CXX : clang++-18
191191 ENABLE_CLANG_TIDY : " OFF"
192- - uses : actions/upload-artifact@v3
192+ - uses : actions/upload-artifact@v4
193193 if : always()
194194 with :
195195 name : ${{ matrix.config }}-results
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
1414 runs-on : ubuntu-latest
1515 if : github.repository == 'llvm/llvm-project'
1616 steps :
17- - uses : actions/setup-node@v3
17+ - uses : actions/setup-node@v4
1818 with :
1919 node-version : 18
2020 check-latest : true
2121 - run : npm install mailgun.js form-data
2222 - name : Send notification
23- uses : actions/github-script@v6
23+ uses : actions/github-script@v7
2424 env :
2525 MAILGUN_API_KEY : ${{ secrets.LLVM_BUGS_KEY }}
2626 with :
Original file line number Diff line number Diff line change 9090 # Using this setup-python action to make 3.11 (64bit) the default
9191 - name : Setup Python
9292 if : ${{ matrix.os != 'self-hosted' }}
93- uses : actions/setup-python@v4
93+ uses : actions/setup-python@v5
9494 with :
9595 python-version : ${{ inputs.python_version }}
9696 - name : Install Ninja
Original file line number Diff line number Diff line change 6767 github.event.pull_request.draft == false &&
6868 github.event.pull_request.commits < 10
6969 steps :
70- - uses : actions/labeler@v4
70+ - uses : actions/labeler@v5
7171 with :
7272 configuration-path : .github/new-prs-labeler.yml
7373 # workaround for https://github.com/actions/labeler/issues/112
Original file line number Diff line number Diff line change 2626
2727 - name : Get changed files
2828 id : changed-files
29- uses : tj-actions/changed-files@v39
29+ uses : tj-actions/changed-files@v45
3030 with :
3131 separator : " ,"
3232 skip_initial_fetch : true
5656 clangformat : 17.0.1
5757
5858 - name : Setup Python env
59- uses : actions/setup-python@v4
59+ uses : actions/setup-python@v5
6060 with :
6161 python-version : ' 3.11'
6262 cache : ' pip'
Original file line number Diff line number Diff line change 7171 mv llvm_build.tar.gz classic-flang-llvm-project/classic-flang-llvm-project/.
7272
7373 - name : Upload llvm
74- uses : actions/upload-artifact@v2
74+ uses : actions/upload-artifact@v4
7575 with :
7676 name : llvm_build_${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.version }}_${{ steps.extract_branch.outputs.branch }}
7777 path : llvm_build.tar.gz
9292 # target: AArch64
9393
9494 steps :
95- - uses : actions/checkout@v3
95+ - uses : actions/checkout@v4
9696
9797 - name : Setup Windows
9898 uses : llvm/actions/setup-windows@main
@@ -124,7 +124,7 @@ jobs:
124124 Copy-Item llvm_build.7z -Destination $pwd/classic-flang-llvm-project/
125125
126126 - name : Upload llvm
127- uses : actions/upload-artifact@v3
127+ uses : actions/upload-artifact@v4
128128 with :
129129 name : llvm_build_win_${{ matrix.arch }}_clangcl_${{ steps.extract_branch.outputs.branch }}
130130 path : ${{ github.workspace }}\llvm_build.7z
Original file line number Diff line number Diff line change 4545
4646 steps :
4747 - name : Checkout LLVM
48- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
48+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4949
5050 - name : Check Permissions
5151 env :
9191 - ubuntu-22.04
9292 steps :
9393 - name : Checkout LLVM
94- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
94+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
9595 with :
9696 ref : ${{ needs.prepare.outputs.ref }}
9797
@@ -133,7 +133,7 @@ jobs:
133133
134134 steps :
135135 - name : Checkout LLVM
136- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
136+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
137137 with :
138138 ref : ${{ needs.prepare.outputs.ref }}
139139 path : ${{ needs.prepare.outputs.build-dir }}/llvm-project
You can’t perform that action at this time.
0 commit comments