Skip to content

Commit

Permalink
ci: use default branches
Browse files Browse the repository at this point in the history
in actions/checkout, docker/login-action, and docker/setup-buildx-action
  • Loading branch information
sc0w committed Oct 20, 2024
1 parent c94e9ac commit d06c073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
run: sudo apt-get install python3-github

- name: Check Out Repo
uses: actions/checkout@v4
uses: actions/checkout@main

- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@master
env:
DOCKER_USER: ${{ secrets.DOCKER_HUB_USERNAME }}
if: ${{ env.DOCKER_USER != '' }}
Expand All @@ -57,7 +57,7 @@ jobs:

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

- name: install docker-build
run: |
Expand Down

0 comments on commit d06c073

Please sign in to comment.