Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v2

Check failure on line 30 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L30

the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:30:15: the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
fetch-depth: 0

- name: Setup Java (temurin@11)
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v2

Check failure on line 36 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L36

the runner of "actions/setup-java@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:36:15: the runner of "actions/setup-java@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
distribution: temurin
java-version: 11

- name: Cache sbt
uses: actions/cache@v2

Check failure on line 42 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L42

the runner of "actions/cache@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:42:15: the runner of "actions/cache@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
path: |
~/.sbt
Expand All @@ -60,7 +60,7 @@
run: tar cf targets.tar utils/target backends/target target parser/target backends/eolang/target analysis/target core/target interop/target project/target

- name: Upload target directories
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v7
with:
name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }}
path: targets.tar
Expand All @@ -75,17 +75,17 @@
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v2

Check failure on line 78 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L78

the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:78:15: the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

- name: Setup Java (temurin@11)
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v2

Check failure on line 82 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L82

the runner of "actions/setup-java@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:82:15: the runner of "actions/setup-java@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
distribution: temurin
java-version: 11

- name: Cache sbt
uses: actions/cache@v2

Check failure on line 88 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L88

the runner of "actions/cache@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:88:15: the runner of "actions/cache@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
path: |
~/.sbt
Expand All @@ -108,17 +108,17 @@
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v2

Check failure on line 111 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L111

the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:111:15: the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

- name: Setup Java (temurin@11)
if: matrix.java == 'temurin@11'
uses: actions/setup-java@v2

Check failure on line 115 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L115

the runner of "actions/setup-java@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:115:15: the runner of "actions/setup-java@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
distribution: temurin
java-version: 11

- name: Cache sbt
uses: actions/cache@v2

Check failure on line 121 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L121

the runner of "actions/cache@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/ci.yml:121:15: the runner of "actions/cache@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
path: |
~/.sbt
Expand Down
Loading