"...composable_kernel_rocm.git" did not exist on "29dcb956dbe1fcb166b4646633837b7da8e5fdba"
Unverified Commit c7294998 authored by Umang Yadav's avatar Umang Yadav Committed by GitHub
Browse files

Update GH actions to use GITHUB_OUTPUT (#1617)

* use GITHUB_STATE
parent 1741708f
...@@ -39,10 +39,8 @@ jobs: ...@@ -39,10 +39,8 @@ jobs:
- name: Prepare timestamp - name: Prepare timestamp
id: cache_timestamp id: cache_timestamp
shell: cmake -P {0} shell: bash
run: | run: echo timestamp="$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_OUTPUT
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
message("::set-output name=timestamp::${current_date}")
- name: Cache files for tidy - name: Cache files for tidy
uses: pat-s/always-upload-cache@v3.0.11 uses: pat-s/always-upload-cache@v3.0.11
...@@ -88,10 +86,8 @@ jobs: ...@@ -88,10 +86,8 @@ jobs:
- name: Prepare timestamp - name: Prepare timestamp
id: cache_timestamp id: cache_timestamp
shell: cmake -P {0} shell: bash
run: | run: echo timestamp="$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_OUTPUT
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
message("::set-output name=timestamp::${current_date}")
- name: Cache files for cppcheck - name: Cache files for cppcheck
uses: pat-s/always-upload-cache@v2.1.3 uses: pat-s/always-upload-cache@v2.1.3
...@@ -235,10 +231,8 @@ jobs: ...@@ -235,10 +231,8 @@ jobs:
rbuild prepare -d cget -s gh rbuild prepare -d cget -s gh
- name: Prepare timestamp - name: Prepare timestamp
id: cache_timestamp id: cache_timestamp
shell: cmake -P {0} shell: bash
run: | run: echo timestamp="$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_OUTPUT
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
message("::set-output name=timestamp::${current_date}")
- name: Cache files for ccache - name: Cache files for ccache
# Ignore the failure of a step and avoid terminating the job. # Ignore the failure of a step and avoid terminating the job.
...@@ -331,10 +325,8 @@ jobs: ...@@ -331,10 +325,8 @@ jobs:
rbuild prepare -d cget -s gh rbuild prepare -d cget -s gh
- name: Prepare timestamp - name: Prepare timestamp
id: cache_timestamp id: cache_timestamp
shell: cmake -P {0} shell: bash
run: | run: echo timestamp="$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_OUTPUT
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
message("::set-output name=timestamp::${current_date}")
- name: Cache files for ccache - name: Cache files for ccache
# Ignore the failure of a step and avoid terminating the job. # Ignore the failure of a step and avoid terminating the job.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment