[PATCH] D148327: [github] update action and use major version

Mohammed Keyvanzadeh via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 14 04:41:06 PDT 2023


VoltrexMaster created this revision.
VoltrexMaster added a reviewer: tstellar.
Herald added a project: All.
VoltrexMaster requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

- Update the `actions/download-artifact` action to version 3.
- Use the major version of an action instead of specifying the minor or patch versions.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D148327

Files:
  .github/workflows/llvm-project-tests.yml
  .github/workflows/release-tasks.yml


Index: .github/workflows/release-tasks.yml
===================================================================
--- .github/workflows/release-tasks.yml
+++ .github/workflows/release-tasks.yml
@@ -49,7 +49,7 @@
           ./llvm/utils/release/github-upload-release.py --token ${{ github.token }} --release ${{ steps.validate-tag.outputs.release-version }} upload --files *doxygen*.tar.xz
 
       - name: Create Release Notes Artifact
-        uses: actions/download-artifact at v1
+        uses: actions/download-artifact at v3
         with:
           name: release-notes
           path: docs-build/html-export/
Index: .github/workflows/llvm-project-tests.yml
===================================================================
--- .github/workflows/llvm-project-tests.yml
+++ .github/workflows/llvm-project-tests.yml
@@ -66,7 +66,7 @@
         with:
           fetch-depth: 250
       - name: Setup ccache
-        uses: hendrikmuhs/ccache-action at v1.2
+        uses: hendrikmuhs/ccache-action at v1
         with:
           # A full build of llvm, clang, lld, and lldb takes about 250MB
           # of ccache space. There's not much reason to have more than this,


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148327.513545.patch
Type: text/x-patch
Size: 1160 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230414/fb47bc37/attachment.bin>


More information about the llvm-commits mailing list