Skip to content

Commit c22f9da

Browse files
committed
Update GitHub Actions to use latest versions of checkout, Buildx, and login actions
1 parent 3af6fcc commit c22f9da

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/dockerimage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Docker Buildx
17-
uses: docker/setup-buildx-action@v2
17+
uses: docker/setup-buildx-action@v3
1818

1919
- name: Configure Docker BuildKit
2020
run: |
2121
echo "DOCKER_BUILDKIT=1" >> $GITHUB_ENV
2222
2323
- name: Login to Docker Hub
2424
if: github.event_name != 'pull_request'
25-
uses: docker/login-action@v2
25+
uses: docker/login-action@v3
2626
with:
2727
username: ${{ secrets.DOCKER_USERNAME }}
2828
password: ${{ secrets.DOCKER_PASSWORD }}

0 commit comments

Comments
 (0)