diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index ccdfa3d0..bf9a77c0 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -32,7 +32,7 @@ jobs: options: --security-opt seccomp=unconfined steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - run: cat /etc/os-release - run: ${{ matrix.run }} - run: make -j$(nproc) KERNELRELEASE=$(cd /lib/modules; ls) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b80c09be..240a1533 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index 17f4d3d8..345408cf 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -29,8 +29,8 @@ jobs: - image: i386/ubuntu:bionic packages: libelf-dev linux-headers-generic steps: - - uses: docker/setup-qemu-action@v1 - - uses: actions/checkout@v1 + - uses: docker/setup-qemu-action@v2 + - uses: actions/checkout@v3 - name: Create Dockerfile run: | cat <Dockerfile diff --git a/.github/workflows/docker-boot.yml b/.github/workflows/docker-boot.yml index 04a78df9..8a1e7c13 100644 --- a/.github/workflows/docker-boot.yml +++ b/.github/workflows/docker-boot.yml @@ -30,14 +30,14 @@ jobs: install: qemu-system-arm steps: - - uses: docker/setup-qemu-action@v1 + - uses: docker/setup-qemu-action@v2 - run: sudo apt-get update # It's possible to update QEMU to (6.0) on focal (ubuntu-20.04) with # add-apt-repository ppa:canonical-server/server-backports # but this is still not enough to boot & power-off raspi2b properly. - run: sudo apt-get install -y qemu-utils e2fsprogs expect ${{ matrix.install }} - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Enable LKRG debugging options run: | sed -i '/P_LKRG_JUMP_LABEL_STEXT_DEBUG/s/\/\///' src/modules/print_log/p_lkrg_print_log.h diff --git a/.github/workflows/mkosi-boot.yml b/.github/workflows/mkosi-boot.yml index 98f77216..028fbc88 100644 --- a/.github/workflows/mkosi-boot.yml +++ b/.github/workflows/mkosi-boot.yml @@ -13,7 +13,7 @@ jobs: - focal - jammy steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: sudo apt-get update - run: sudo apt-get install -y debootstrap qemu-system-x86 systemd-container expect - name: Install mkosi from git diff --git a/.github/workflows/mkosi-mainline.yml b/.github/workflows/mkosi-mainline.yml index f8e696bf..c7ebf259 100644 --- a/.github/workflows/mkosi-mainline.yml +++ b/.github/workflows/mkosi-mainline.yml @@ -11,7 +11,7 @@ jobs: if: ${{ github.repository == 'lkrg-org/lkrg' || github.event_name != 'schedule' }} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: sudo apt-get update - run: sudo apt-get install -y debootstrap qemu-system-x86 systemd-container expect sysvbanner - name: Install mkosi from git