Fix Node.js dependency: downgrade actions to v3 for ubuntu:latest compatibility
Some checks failed
Build Packages / Build libostree Backport (push) Failing after 1s
Build Packages / Build bootc Package (push) Has been skipped
Build Packages / Create Combined Artifacts (push) Has been skipped
Test Build / Test bootc Build (with existing libostree) (push) Failing after 2s
Some checks failed
Build Packages / Build libostree Backport (push) Failing after 1s
Build Packages / Build bootc Package (push) Has been skipped
Build Packages / Create Combined Artifacts (push) Has been skipped
Test Build / Test bootc Build (with existing libostree) (push) Failing after 2s
This commit is contained in:
parent
f59d3080b9
commit
764f01310f
3 changed files with 10 additions and 10 deletions
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
image: ubuntu:latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup build environment
|
||||
run: |
|
||||
|
|
@ -67,7 +67,7 @@ jobs:
|
|||
dpkg-buildpackage -us -uc -b
|
||||
|
||||
- name: Upload libostree artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: libostree-backport-packages
|
||||
path: /opt/Projects/ostree-backport-noble/*.deb
|
||||
|
|
@ -81,10 +81,10 @@ jobs:
|
|||
needs: build-libostree-backport
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Download libostree artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: libostree-backport-packages
|
||||
path: /tmp/libostree-packages
|
||||
|
|
@ -120,7 +120,7 @@ jobs:
|
|||
dpkg-buildpackage -us -uc -b
|
||||
|
||||
- name: Upload bootc artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bootc-packages
|
||||
path: bootc-${BOOTC_VERSION}/../*.deb
|
||||
|
|
@ -134,7 +134,7 @@ jobs:
|
|||
needs: [build-libostree-backport, build-bootc]
|
||||
steps:
|
||||
- name: Download all artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
path: /tmp/artifacts
|
||||
|
||||
|
|
@ -145,7 +145,7 @@ jobs:
|
|||
cp /tmp/artifacts/bootc-packages/*.deb release-assets/ 2>/dev/null || true
|
||||
|
||||
- name: Upload combined artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: release-assets
|
||||
path: release-assets/
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
image: ubuntu:latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup build environment
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -15,12 +15,12 @@ jobs:
|
|||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Download artifacts from previous workflow
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: release-assets
|
||||
path: /tmp/artifacts
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue