diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84b74bd..83367f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: - name: Clean Workspace run: rm -rf *.deb *.ddeb *.build *.buildinfo *.changes - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive path: pve-edge-kernel @@ -24,7 +24,7 @@ jobs: debian/rules debian/control debuild -e CCACHE_DIR=/var/cache/ccache --prepend-path=/usr/lib/ccache --jobs=auto -b -uc -us - name: Upload Artifacts - uses: actions/upload-artifact@v2-preview + uses: actions/upload-artifact@v3 with: name: debs path: "*.deb" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bd99784..6b0d73c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - name: Clean Workspace run: rm -rf *.deb *.ddeb *.build *.buildinfo *.changes - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive path: pve-edge-kernel @@ -44,7 +44,7 @@ jobs: PVE_KERNEL_CFLAGS: ${{ matrix.build_cflags }} PVE_ZFS_CC: ${{ matrix.build_cc }} - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ matrix.debian }}-${{ matrix.build_profile }} path: "*.deb" @@ -55,11 +55,11 @@ jobs: needs: build steps: - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive - name: Download Artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: path: artifacts - name: Delete Debug Symbols diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 4f17739..a4ec7a9 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -19,7 +19,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive - name: Setup System Dependencies @@ -42,7 +42,7 @@ jobs: echo "::set-output name=changelog::$changelog" echo "::set-output name=branch::${GITHUB_REF##*/}" - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v4 with: token: ${{ secrets.PAT }} # Custom token needed to recursively trigger workflows author: Fabian Mastenbroek diff --git a/.github/workflows/watch.yml b/.github/workflows/watch.yml index b8f81e9..216dda3 100644 --- a/.github/workflows/watch.yml +++ b/.github/workflows/watch.yml @@ -14,7 +14,7 @@ jobs: branch: ['v6.0.x'] steps: - name: Checkout Sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ matrix.branch }} submodules: recursive