Skip to content

Commit

Permalink
ci: update actions/checkout@v2 version to @V3
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Rogozhkin <[email protected]>
  • Loading branch information
dvrogozh committed Nov 22, 2022
1 parent 16775d0 commit 2be1f8b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Verify dockefiles are up-to-date
run: |
cmake .
Expand All @@ -20,56 +20,56 @@ jobs:
cdn-intel-pkgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building CDN demo w/ Intel pkgs
run: docker build --build-arg SAMPLE=cdn --no-cache --force-rm -f docker/ubuntu20.04/intel-gfx/Dockerfile -t intel-media-delivery-cdn .

edge-intel-pkgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building Edge demo w/ Intel pkgs
run: docker build --build-arg SAMPLE=edge --no-cache --force-rm -f docker/ubuntu20.04/intel-gfx/Dockerfile -t intel-media-delivery-edge .

cdn-native-pkgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building CDN demo w/ Ubuntu native pkgs
run: docker build --build-arg SAMPLE=cdn --no-cache --force-rm -f docker/ubuntu20.04/native/Dockerfile -t intel-media-delivery-cdn .

cdn-selfbuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building CDN against selfbuild stack
run: docker build --build-arg SAMPLE=cdn --no-cache --force-rm -f docker/ubuntu20.04/selfbuild/Dockerfile -t intel-media-delivery-cdn .

cdn-selfbuild-prodkmd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building CDN against selfbuild stack
run: docker build --build-arg SAMPLE=cdn --no-cache --force-rm -f docker/ubuntu20.04/selfbuild-prodkmd/Dockerfile -t intel-media-delivery-cdn .

edge-native-pkgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building Edge demo w/ Ubuntu native pkgs
run: docker build --build-arg SAMPLE=edge --no-cache --force-rm -f docker/ubuntu20.04/native/Dockerfile -t intel-media-delivery-edge .

dkms-u2004:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building DKMS pkgs
run: docker build --build-arg SAMPLE=edge --no-cache --force-rm -f docker/ubuntu20.04/dkms/Dockerfile -t dkms .

dkms-u2204:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Building DKMS pkgs
run: docker build --build-arg SAMPLE=edge --no-cache --force-rm -f docker/ubuntu22.04/dkms/Dockerfile -t dkms .

0 comments on commit 2be1f8b

Please sign in to comment.