File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- name : Checkout code
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
14
14
- name : Set environment variables
15
15
id : set-env
@@ -29,17 +29,17 @@ jobs:
29
29
fi
30
30
31
31
- name : Set up Docker Buildx
32
- uses : docker/setup-buildx-action@v2
32
+ uses : docker/setup-buildx-action@v3
33
33
34
34
- name : Login to GitHub Container Registry
35
- uses : docker/login-action@v2
35
+ uses : docker/login-action@v3
36
36
with :
37
37
registry : ghcr.io
38
38
username : ${{ github.repository_owner }}
39
39
password : ${{ secrets.GITHUB_TOKEN }}
40
40
41
41
- name : Build and cache Docker image
42
- uses : docker/build-push-action@v4
42
+ uses : docker/build-push-action@v5
43
43
with :
44
44
context : .
45
45
push : false
70
70
# Only deploy if on main or staging branch
71
71
- name : Configure AWS credentials
72
72
if : github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging'
73
- uses : aws-actions/configure-aws-credentials@v1
73
+ uses : aws-actions/configure-aws-credentials@v4
74
74
with :
75
75
aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
76
76
aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
You can’t perform that action at this time.
0 commit comments