Skip to content

Commit

Permalink
Updates to the CI workflows, to get them to working. Well, limping an…
Browse files Browse the repository at this point in the history
…yway.
  • Loading branch information
Castaglia committed Jul 14, 2024
1 parent e6ba563 commit d427423
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
build:
runs-on: ubuntu-latest

env:
# We need to avoid using NodeJS v20, because it doesn't work with
# older glibc versions. See:
# https://github.com/actions/checkout/issues/1809.
ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION: node16
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

strategy:
matrix:
compiler:
Expand All @@ -28,13 +36,13 @@ jobs:

steps:
- name: Checkout ProFTPD
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: proftpd/proftpd
path: proftpd

- name: Checkout module source code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: proftpd/contrib/mod_vroot

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:

steps:
- name: Checkout ProFTPD
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: proftpd/proftpd

- name: Checkout mod_vroot
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: contrib/mod_vroot

Expand Down

0 comments on commit d427423

Please sign in to comment.