Skip to content

Commit

Permalink
Update GitHub Actions to latest versions to avoid deprecated command …
Browse files Browse the repository at this point in the history
…warnings

- Updated actions/checkout to v4
- Updated docker/setup-buildx-action to v3
- Updated docker/login-action to v3
  • Loading branch information
Marc Wolf committed Jun 11, 2024
1 parent 3610574 commit cec5706
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit cec5706

Please sign in to comment.