Skip to content

Commit

Permalink
Update version of gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomini committed Mar 6, 2024
1 parent d2272c4 commit 773b61c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build & Push image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: docker/testsuite
file: ./docker/testsuite/Dockerfile.centos${{ matrix.rhel }}
Expand All @@ -54,16 +54,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build & Push image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: docker/voms
file: ./docker/voms/Dockerfile.centos${{ matrix.rhel }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Provide trustanchors
run: docker-compose --file docker-compose.ci.yml up trust
Expand Down Expand Up @@ -159,5 +159,5 @@ jobs:
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: test-report-and-logs
name: test-report-and-logs_${{ matrix.client}}_${{ matrix.server }}
path: ${{ env.ARTIFACTS_PATH }}
4 changes: 2 additions & 2 deletions .github/workflows/iam-dev.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Provide trustanchors
run: docker-compose --file docker-compose.ci.yml up trust
Expand Down Expand Up @@ -88,5 +88,5 @@ jobs:
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: test-report-and-logs
name: test-report-and-logs_${{ matrix.client }}_voms-aa
path: ${{ env.ARTIFACTS_PATH }}

0 comments on commit 773b61c

Please sign in to comment.