File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ jobs:
24
24
25
25
steps :
26
26
- name : Checkout repository
27
- uses : actions/checkout@v3
27
+ uses : actions/checkout@v4
28
28
29
29
# Login against a Docker registry except on PR
30
30
# https://github.com/docker/login-action
31
31
- name : Log into registry ${{ env.REGISTRY }}
32
- uses : docker/login-action@v2
32
+ uses : docker/login-action@v3
33
33
with :
34
34
registry : ${{ env.REGISTRY }}
35
35
username : ${{ github.actor }}
@@ -46,14 +46,14 @@ jobs:
46
46
echo "tags=$tags" >> $GITHUB_OUTPUT
47
47
- name : Extract Docker metadata
48
48
id : meta
49
- uses : docker/metadata-action@v4
49
+ uses : docker/metadata-action@v5
50
50
with :
51
51
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
52
52
53
53
# Build and push Docker image with Buildx (don't push on PR)
54
54
# https://github.com/docker/build-push-action
55
55
- name : Build and push Docker image
56
- uses : docker/build-push-action@v4
56
+ uses : docker/build-push-action@v5
57
57
with :
58
58
context : .
59
59
file : Dockerfile
Original file line number Diff line number Diff line change 16
16
tag : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.regex-match.outputs.tag_match }}
17
17
steps :
18
18
- name : Checkout repository
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
- name : Get action.yaml tag
21
21
id : regex-match
22
22
run : |
45
45
- future-true
46
46
steps :
47
47
- name : Checkout repository
48
- uses : actions/checkout@v3
48
+ uses : actions/checkout@v4
49
49
- name : Build local docker image
50
- uses : docker/build-push-action@v4
50
+ uses : docker/build-push-action@v5
51
51
with :
52
52
context : .
53
53
file : Dockerfile
62
62
token : ${{ secrets.GITHUB_TOKEN }}
63
63
64
64
- name : Archive ${{ matrix.test }} Project
65
- uses : actions/upload-artifact@v3
65
+ uses : actions/upload-artifact@v4
66
66
with :
67
67
name : ${{ matrix.test }}
68
68
path : ./test_projects/${{ matrix.test }}/_expected
Original file line number Diff line number Diff line change 21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- name : Checkout repository
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
- name : Get action.yaml tag
26
26
id : regex-match
27
27
run : |
54
54
steps :
55
55
- name : Update the ${{ env.TAG_NAME }} tag
56
56
id : update-major-tag
57
- uses : actions/publish-action@v0.2.1
57
+ uses : actions/publish-action@v0.3.0
58
58
with :
59
59
source-tag : ${{ env.TAG_NAME }}
Original file line number Diff line number Diff line change 14
14
SHELLCHECK_OPTS : -s bash
15
15
steps :
16
16
- name : Checkout repository
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
19
19
- name : Run ShellCheck
20
20
uses : ludeeus/action-shellcheck@master
Original file line number Diff line number Diff line change 22
22
tag : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.regex-match.outputs.tag_match }}
23
23
steps :
24
24
- name : Checkout repository
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
- name : Get action.yaml tag
27
27
id : regex-match
28
28
run : |
51
51
- future-true
52
52
steps :
53
53
- name : Checkout repository
54
- uses : actions/checkout@v3
54
+ uses : actions/checkout@v4
55
55
- name : Build local docker image
56
- uses : docker/build-push-action@v4
56
+ uses : docker/build-push-action@v5
57
57
with :
58
58
context : .
59
59
file : Dockerfile
You can’t perform that action at this time.
0 commit comments