Skip to content

Commit

Permalink
Attempt to fix Github Actions by allowing unsecure Node.js version
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ipinfo committed Sep 4, 2024
1 parent f3255b0 commit 6f30805
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ name: CI

on: [push, pull_request]

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
otp: [21.3, 22.0.7, 22.3, 23.0.4, 23.2.7.0, 24.0]
container:
image: erlang:${{ matrix.otp }}
image: erlang:${{ matrix.otp }}-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Compile
uses: actions/checkout@v43
run: rebar3 compile
- name: Tests
run: |
Expand Down

0 comments on commit 6f30805

Please sign in to comment.