Skip to content
Open
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/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ${{matrix.runners}}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set arch environment variable
run: |
if [[ ${{matrix.runners}} == 'ubuntu-22.04' ]]; then
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
echo arch="arm64" >> $GITHUB_ENV
fi
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Free runner space
run: sudo rm -rf /usr/local/lib/android
- name: Cleanup docker images
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ubi9-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ${{matrix.runners}}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set arch environment variable
run: |
if [[ ${{matrix.runners}} == 'ubuntu-22.04' ]]; then
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
needs: build-base-image
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set short_sha environment variable
run: echo short_sha="$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV
- name: Login to Quay.io
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
needs: publish-base-image
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set arch environment variable
run: |
if [[ ${{matrix.runners}} == 'ubuntu-22.04' ]]; then
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
needs: build-udi
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set short_sha environment variable
run: echo short_sha="$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV
- name: Login to Quay.io
Expand Down
Loading