diff options
| author | Asko Nõmm <asko@nmm.ee> | 2026-01-25 15:15:54 +0200 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2026-01-25 15:15:54 +0200 |
| commit | 770d7eee6de3d02d87607575d2f72756dc37c5de (patch) | |
| tree | 945d9c65d01beb9221f67fe1e5ed0541c83df9f0 /.forgejo | |
| parent | d0ae0a85c21985f3102d613c0a1f2ff1f7fe6240 (diff) | |
Use node:20 image for actions/checkout compatibility
Diffstat (limited to '.forgejo')
| -rw-r--r-- | .forgejo/workflows/tests.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.forgejo/workflows/tests.yml b/.forgejo/workflows/tests.yml index 27fbdee..fdeb5b4 100644 --- a/.forgejo/workflows/tests.yml +++ b/.forgejo/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: test-runtimes: runs-on: docker container: - image: ubuntu:latest + image: node:20 steps: - name: Install dependencies run: | @@ -17,12 +17,7 @@ jobs: apt-get install -y curl wget bash rlwrap unzip git - name: Checkout - run: | - git config --global --add safe.directory "$GITHUB_WORKSPACE" - git init - git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git" - git fetch --depth 1 origin "${GITHUB_SHA}" - git checkout FETCH_HEAD + uses: actions/checkout@v4 - name: Install Java (Zulu 24) run: | |
