Skip to content

Commit

Permalink
Merge pull request #49 from masterleinad/update_actions_versions
Browse files Browse the repository at this point in the history
Update versions of actions
  • Loading branch information
junghans authored Feb 18, 2024
2 parents e2a8667 + 59b5395 commit 434432e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
if: github.repository_owner == 'kokkos' && ( github.event_name == 'push' || github.event_name == 'schedule' )
with:
registry: ghcr.io
Expand All @@ -48,7 +48,7 @@ jobs:
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
- name: Build new image and Load it into Docker for testing
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
tags: ${{ env.docker-tag }}
file: ${{ matrix.config.dockerfile }}
Expand All @@ -57,7 +57,7 @@ jobs:
push: false
load: true
- name: Checkout kokkos
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: kokkos/kokkos
ref: develop
Expand All @@ -77,7 +77,7 @@ jobs:
cmake --build builddir --parallel 2 && \
ctest --test-dir builddir --output-on-failure"
- name: Push the image into GitHub Container Registry
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.repository_owner == 'kokkos' && ( github.event_name == 'push' || github.event_name == 'schedule' ) }}
with:
tags: ${{ env.docker-tag }}
Expand Down

0 comments on commit 434432e

Please sign in to comment.