Skip to content

Commit

Permalink
build on Ubuntu 24.04 runners and switch away from deprecated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Jun 15, 2024
1 parent c0cca41 commit e461e26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/11.0.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
retention: 1
upload64:
needs: [labwc64]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Download labwc build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: vanilladpup-x86_64-11.0.${{ github.run_number }}-labwc
path: labwc
Expand All @@ -36,7 +36,7 @@ jobs:
mv -f labwc/*-bios.img.gz vanilladpup-11.0.${{ github.run_number }}-labwc-bios.img.gz
mv -f labwc/*-uefi.img.gz vanilladpup-11.0.${{ github.run_number }}-labwc-uefi.img.gz
- name: Create Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: vanilladpup-x86_64-11.0.${{ github.run_number }}
tag_name: vanilladpup-x86_64-11.0.${{ github.run_number }}
Expand All @@ -46,13 +46,13 @@ jobs:
labwc/woof-CE.tar.gz
cleanup:
needs: [upload64]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
arch: [x86_64]
steps:
- name: Delete old ${{ matrix.arch }} releases
uses: dev-drprasad/delete-older-releases@v0.2.1
uses: dev-drprasad/delete-older-releases@v0.3.4
with:
keep_latest: 1
delete_tag_pattern: vanilladpup-${{ matrix.arch }}-11.0.
Expand Down

0 comments on commit e461e26

Please sign in to comment.