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
|
image: ubuntu:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup build environment
|
- name: Setup build environment
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -67,7 +67,7 @@ jobs:
|
||||||
dpkg-buildpackage -us -uc -b
|
dpkg-buildpackage -us -uc -b
|
||||||
|
|
||||||
- name: Upload libostree artifacts
|
- name: Upload libostree artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: libostree-backport-packages
|
name: libostree-backport-packages
|
||||||
path: /opt/Projects/ostree-backport-noble/*.deb
|
path: /opt/Projects/ostree-backport-noble/*.deb
|
||||||
|
|
@ -81,10 +81,10 @@ jobs:
|
||||||
needs: build-libostree-backport
|
needs: build-libostree-backport
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Download libostree artifacts
|
- name: Download libostree artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: libostree-backport-packages
|
name: libostree-backport-packages
|
||||||
path: /tmp/libostree-packages
|
path: /tmp/libostree-packages
|
||||||
|
|
@ -120,7 +120,7 @@ jobs:
|
||||||
dpkg-buildpackage -us -uc -b
|
dpkg-buildpackage -us -uc -b
|
||||||
|
|
||||||
- name: Upload bootc artifacts
|
- name: Upload bootc artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: bootc-packages
|
name: bootc-packages
|
||||||
path: bootc-${BOOTC_VERSION}/../*.deb
|
path: bootc-${BOOTC_VERSION}/../*.deb
|
||||||
|
|
@ -134,7 +134,7 @@ jobs:
|
||||||
needs: [build-libostree-backport, build-bootc]
|
needs: [build-libostree-backport, build-bootc]
|
||||||
steps:
|
steps:
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
|
|
||||||
|
|
@ -145,7 +145,7 @@ jobs:
|
||||||
cp /tmp/artifacts/bootc-packages/*.deb release-assets/ 2>/dev/null || true
|
cp /tmp/artifacts/bootc-packages/*.deb release-assets/ 2>/dev/null || true
|
||||||
|
|
||||||
- name: Upload combined artifacts
|
- name: Upload combined artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: release-assets
|
name: release-assets
|
||||||
path: release-assets/
|
path: release-assets/
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ jobs:
|
||||||
image: ubuntu:latest
|
image: ubuntu:latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup build environment
|
- name: Setup build environment
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -15,12 +15,12 @@ jobs:
|
||||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Download artifacts from previous workflow
|
- name: Download artifacts from previous workflow
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: release-assets
|
name: release-assets
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue