Browse Source

Change to actions/checkout@v3

update-actions-node16
Tim Kimber 3 years ago
parent
commit
11225dcce2
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
5 changed files with 19 additions and 19 deletions
  1. +13
    -13
      .github/workflows/run-tests-pebble.yml
  2. +1
    -1
      .github/workflows/run-tests-staging-acmedns.yml
  3. +2
    -2
      .github/workflows/run-tests-staging-duckdns.yml
  4. +2
    -2
      .github/workflows/run-tests-staging-dynu.yml
  5. +1
    -1
      .github/workflows/shellcheck.yml

+ 13
- 13
.github/workflows/run-tests-pebble.yml View File

@ -15,7 +15,7 @@ jobs:
test-alpine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Alpine
@ -23,7 +23,7 @@ jobs:
test-bash-4-0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Alpine using Bash 4.0
@ -31,7 +31,7 @@ jobs:
test-bash-4-2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Alpine using Bash 4.2
@ -39,7 +39,7 @@ jobs:
test-bash-5-0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Alpine using Bash 5
@ -47,7 +47,7 @@ jobs:
test-centos6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on CentOS6
@ -55,7 +55,7 @@ jobs:
test-centos7:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on CentOS7
@ -63,7 +63,7 @@ jobs:
test-centos8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on CentOS8
@ -71,7 +71,7 @@ jobs:
test-debian:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Debian
@ -79,7 +79,7 @@ jobs:
test-rockylinux8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on RockyLinux8
@ -87,7 +87,7 @@ jobs:
test-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu
@ -95,7 +95,7 @@ jobs:
test-ubuntu14:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu14
@ -103,7 +103,7 @@ jobs:
test-ubuntu16:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu16
@ -111,7 +111,7 @@ jobs:
test-ubuntu18:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu18


+ 1
- 1
.github/workflows/run-tests-staging-acmedns.yml View File

@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
if: always()
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu against Staging using acmedns


+ 2
- 2
.github/workflows/run-tests-staging-duckdns.yml View File

@ -9,7 +9,7 @@ jobs:
test-centos7-duckdns:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on CentOS7 against Staging using DuckDNS
@ -19,7 +19,7 @@ jobs:
if: always()
needs: test-centos7-duckdns
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu against Staging using DuckDNS


+ 2
- 2
.github/workflows/run-tests-staging-dynu.yml View File

@ -9,7 +9,7 @@ jobs:
test-centos7-dynu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on CentOS7 against Staging using Dynu
@ -19,7 +19,7 @@ jobs:
if: always()
needs: test-centos7-dynu
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build the docker-compose stack
run: docker-compose up -d --build
- name: Run test suite on Ubuntu against Staging using Dynu


+ 1
- 1
.github/workflows/shellcheck.yml View File

@ -15,7 +15,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Lint check
uses: azohra/shell-linter@latest
with:


Loading…
Cancel
Save