You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ jobs:
21
21
22
22
- name: "Checkout repository"
23
23
id: checkout_repo
24
-
uses: actions/checkout@v3
24
+
uses: actions/checkout@v4
25
25
with:
26
26
fetch-depth: 0
27
27
ref: ${{ github.event.pull_request.head.sha }}
@@ -53,7 +53,7 @@ jobs:
53
53
54
54
- name: "Docker metadata"
55
55
id: meta
56
-
uses: docker/metadata-action@v4
56
+
uses: docker/metadata-action@v5
57
57
with:
58
58
images: |
59
59
ghcr.io/${{ env.REPO_NAME }}
@@ -74,7 +74,7 @@ jobs:
74
74
75
75
- name: "Docker login"
76
76
id: docker_login
77
-
uses: docker/login-action@v1
77
+
uses: docker/login-action@v3
78
78
with:
79
79
registry: ghcr.io
80
80
username: ${{ github.actor }}
@@ -83,7 +83,7 @@ jobs:
83
83
- name: "Build the test Docker image"
84
84
id: docker_build_test_target
85
85
if: ${{ env.DO_TEST == 'true' }}
86
-
uses: docker/build-push-action@v2
86
+
uses: docker/build-push-action@v6
87
87
with:
88
88
push: false
89
89
target: ${{ env.TEST_TARGET }}
@@ -96,7 +96,7 @@ jobs:
96
96
97
97
- name: "Build the final Docker image"
98
98
id: docker_build
99
-
uses: docker/build-push-action@v3
99
+
uses: docker/build-push-action@v6
100
100
with:
101
101
push: true
102
102
tags: ${{ steps.meta.outputs.tags }}
@@ -116,7 +116,7 @@ jobs:
116
116
- name: Verify that the tag is annotated
117
117
run: if test x$(git for-each-ref ${{ github.ref }} | awk '{print $2}') = xtag; then /bin/true; else echo "\"${{ github.ref }}\" does not look like an annotated tag!"; /bin/false; fi
0 commit comments