Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriWahl committed Jul 27, 2024
1 parent e5ab2ae commit dd013eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
dist: debian
steps:
# get source
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# build container image for package creation
- run: /usr/bin/docker build -t build-${{ github.job }} -f build/Dockerfile-${{ env.dist }} .
# make entrypoints executable
Expand All @@ -27,7 +27,7 @@ jobs:
--entrypoint /entrypoint.sh \
build-${{ github.job }}
# upload results
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: ./*.deb
retention-days: 1
Expand All @@ -38,7 +38,7 @@ jobs:
dist: centos
steps:
# get source
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# build container image for package creation
- run: /usr/bin/docker build -t build-${{ github.job }} -f build/Dockerfile-${{ env.dist }} .
# make entrypoints executable
Expand All @@ -50,7 +50,7 @@ jobs:
--entrypoint /entrypoint.sh \
build-${{ github.job }}
# upload results
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: ./*.rpm
retention-days: 1
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-debian, build-centos]
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
- run: cd artifact && md5sum *dhcpy6d* > md5sums.txt
- run: cd artifact && sha256sum *dhcpy6d* > sha256sums.txt
- uses: marvinpinto/action-automatic-releases@latest
Expand Down

0 comments on commit dd013eb

Please sign in to comment.