Skip to content

Commit

Permalink
Bump github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
grg-haas committed Jan 25, 2024
1 parent d1d038f commit f6c9117
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
# We don't need submodules here since Keystone is a monorepo!
- name: Checkout Keystone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'false'

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# First, we need to get the version of Keystone we are working on. We
# will also need submodules here since we are doing full builds
- name: Checkout Keystone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'true'

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
# since we really only care about keeping the latest cache anyways.
- name: Restore buildroot packages
id: restore-buildroot-dl
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: dl.tar
key: buildroot-dl-${{ steps.cache-keys.outputs.YMDH }}
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Restore ccache
id: restore-ccache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ccache.tar.xz
key: ccache-${{ steps.cache-keys.outputs.YMDH }}
Expand Down Expand Up @@ -239,14 +239,14 @@ jobs:
fi
- name: Restore buildroot packages
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
if: ${{ steps.check-caches.outputs.BUILDROOT_DL_UPDATE == 'true' }}
with:
path: dl.tar
key: ${{ needs.build.outputs.buildroot-dl-matched-key }}

- name: Restore ccache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
if: ${{ steps.check-caches.outputs.BUILDROOT_CCACHE_UPDATE == 'true' }}
with:
path: ccache.tar.xz
Expand Down Expand Up @@ -295,14 +295,14 @@ jobs:
fi
- name: Save buildroot download cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: ${{ steps.check-caches.outputs.BUILDROOT_DL_UPDATE == 'true' }}
with:
path: dl.tar
key: ${{ needs.build.outputs.buildroot-dl-primary-key }}

- name: Save ccache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: ${{ steps.check-caches.outputs.BUILDROOT_CCACHE_UPDATE == 'true' }}
with:
path: ccache.tar.xz
Expand All @@ -318,7 +318,7 @@ jobs:
steps:
# We don't need submodules here since Keystone is a monorepo!
- name: Checkout Keystone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'false'

Expand All @@ -333,7 +333,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Keystone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'true'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
# We don't need submodules here since Keystone is a monorepo!
- name: Checkout Keystone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'false'

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
steps:
# We don't need submodules here since Keystone is a monorepo!
- name: Checkout Keystone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'false'

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export BUILDROOT_OVERLAYDIR ?= $(BUILDDIR)/overlay
export BUILDROOT_BUILDDIR ?= $(BUILDDIR)/buildroot.build


# options: generic, cva6, hifive_unmatched
# options: generic, cva6, hifive_unmatched, mpfs
export KEYSTONE_PLATFORM ?= generic
export KEYSTONE_BITS ?= 64

Expand Down

0 comments on commit f6c9117

Please sign in to comment.