Skip to content

Commit

Permalink
chore: update GitHub Actions to latest versions
Browse files Browse the repository at this point in the history
Updated the GitHub Actions workflow to use the latest versions of
actions/checkout and docker/login-action. This ensures compatibility
with the latest features and security updates.
  • Loading branch information
Brian2074 committed Nov 10, 2024
1 parent b39e259 commit 11fc630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
steps:
# Step 1: Check out the repository
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Step 2: Log in to Docker Hub
- name: Log in to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }} # Docker Hub username stored in secrets
password: ${{ secrets.DOCKER_PASSWORD }} # Docker Hub password stored in secrets
Expand Down

0 comments on commit 11fc630

Please sign in to comment.