Skip to content

Commit

Permalink
Version bumps:
Browse files Browse the repository at this point in the history
- Node to v20
- setup-qemu-action to v3
- setup-buildx-action to v3
- cache to v4
- Remove MS apt sources
  • Loading branch information
k0gen committed Apr 24, 2024
1 parent c54edcb commit f54c7c3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ runs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: Install dependencies
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update
sudo apt-get install -y git build-essential openssl libssl-dev libc6-dev clang libclang-dev ca-certificates curl
sudo snap install yq deno
Expand All @@ -25,10 +26,10 @@ runs:
override: true

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Checkout start-os
uses: actions/checkout@v4
Expand All @@ -38,7 +39,7 @@ runs:
submodules: recursive

- name: Cache start-sdk
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: |
Expand Down

0 comments on commit f54c7c3

Please sign in to comment.