Skip to content

Commit

Permalink
upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton authored Nov 9, 2024
1 parent 8cffe17 commit 14657af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
dnf5 install -y git make gcc ccache flex bison elfutils-devel parted vboot-utils golang xz bc tar openssl-devel python3-pip uboot-tools ${{ matrix.platform == 'arm64' && 'gcc-aarch64-linux-gnu' || '' }}
pip3 install depthcharge-tools
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -40,15 +40,15 @@ jobs:
echo "KERNEL_COMMIT=$(git rev-parse HEAD:kernel)" >> $GITHUB_ENV
- name: Setup Go cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.GOCACHE }}
key: go-${{ matrix.platform }}-${{ env.UROOT_COMMIT }}
restore-keys: |
go-${{ matrix.platform }}-
- name: Setup ccache cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.platform }}-${{ env.KERNEL_COMMIT }}-${{ hashFiles('kernel.config') }}
Expand All @@ -66,7 +66,7 @@ jobs:
run: make ${{ matrix.platform == 'x86_64' && 'CC="ccache gcc"' || '' }} -j$(nproc) ${{ matrix.platform }}

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: submarine-${{ matrix.platform }}
path: build

0 comments on commit 14657af

Please sign in to comment.