Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ghe upgrade actions v2 to v3 #8710

Merged
merged 7 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

- name: Checkout XRT on pull request
if: github.event_name == 'pull_request'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout XRT on dispatch
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.sha }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clangtidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout XRT
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Store sha
run: echo ${{ github.sha }} > sha
- name: Compare sha
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-sha
with:
path: sha
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
if: github.repository == 'Xilinx/XRT'
steps:
- name: Checkout XRT
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Store sha
run: echo ${{ github.sha }} > sha
- name: Compare sha
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-sha
with:
path: sha
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.repository == 'Xilinx/XRT'
steps:
- name: Checkout XRT
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Store sha
run: echo ${{ github.sha }} > sha
- name: Compare sha
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# This step checks out PR in the github workspace. Eventhough we are not building XRT on enclave host, this step is necessary to get create_vm.sh and attach_cards.sh scripts which are included in the XRT tree
- name: Checkout PR
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Creating a VM from snapshot on enclave host
run: |
sudo .github/scripts/pipeline/create_vm.sh
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
run: sudo ~/pipeline/setup.sh

- name: Checkout PR
uses: actions/checkout@v2
uses: actions/checkout@v3

# This step builds XRT rpm/deb packages. build.sh is run with -opt option
- name: Build XRT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xrt_master_2025.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
echo "PATH=/usr/bin:$PATH" >> $GITHUB_ENV

- name: Checkout PR
uses: actions/checkout@v2.4.2
uses: actions/checkout@v2.4.2
with:
fetch-depth: 0
path: ${{ github.workspace }}/${{ github.run_number }}
Expand Down
Loading