File tree Expand file tree Collapse file tree 4 files changed +19
-5
lines changed Expand file tree Collapse file tree 4 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+
4+ # Maintain dependencies for GitHub Actions
5+ - package-ecosystem : " github-actions"
6+ directory : " /"
7+ schedule :
8+ interval : " monthly"
9+
10+ # Maintain dependencies for Docker
11+ - package-ecosystem : " docker"
12+ directory : " /"
13+ schedule :
14+ interval : " monthly"
Original file line number Diff line number Diff line change 1111 uses : actions/checkout@v3
1212
1313 - name : Build Docker Image
14- uses : docker/build-push-action@v2
14+ uses : docker/build-push-action@v4
1515 with :
1616 context : .
1717 push : false
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ jobs:
1616 uses : actions/checkout@v3
1717
1818 - name : Login to DockerHub
19- uses : docker/login-action@v1
19+ uses : docker/login-action@v2
2020 with :
2121 username : ${{ secrets.DOCKERHUB_USERNAME }}
2222 password : ${{ secrets.DOCKERHUB_TOKEN }}
2323
2424 - name : Extract metadata (tags, labels) for Docker
2525 id : meta
26- uses : docker/metadata-action@v3
26+ uses : docker/metadata-action@v4
2727 with :
2828 images : nevermendel/leetcode-export
2929 tags : |
3333 type=semver,pattern={{major}}.{{minor}}
3434
3535 - name : Build and push Docker image
36- uses : docker/build-push-action@v2
36+ uses : docker/build-push-action@v4
3737 with :
3838 context : .
3939 push : true
Original file line number Diff line number Diff line change 1- FROM alpine:latest
1+ FROM alpine:3.17.1
22
33RUN apk add --no-cache \
44 nss \
You can’t perform that action at this time.
0 commit comments