This repository was archived by the owner on Aug 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 13
13
env :
14
14
DOCKER_IMAGE : ghcr.io/${{ github.repository }}/${{ github.event.repository.name }}
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Login to GitHub Docker Registry
18
- uses : docker/login-action@v1
18
+ uses : docker/login-action@v2
19
19
with :
20
20
registry : ghcr.io
21
21
username : ${{ github.actor }}
@@ -29,13 +29,12 @@ jobs:
29
29
- name : Build docker image
30
30
run : docker build -t ${{ env.DOCKER_TAG }} .
31
31
- name : Create tag and release
32
- uses : actions/create- release@v1
32
+ uses : ncipollo/ release-action @v1
33
33
env :
34
34
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35
35
with :
36
- tag_name : ${{ steps.artifact-version.outputs.version }}
37
- release_name : ${{ steps.artifact-version.outputs.version }}
38
- commitish : ${{ github.sha }}
36
+ tag : ${{ steps.artifact-version.outputs.version }}
37
+ commit : ${{ github.sha }}
39
38
- name : Push docker image
40
39
run : |
41
40
docker push ${{ env.DOCKER_TAG }}
Original file line number Diff line number Diff line change 16
16
name : Deploy to GCP
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v3
20
20
- name : Create artifact version
21
21
id : artifact-version
22
22
uses : navikt/sosialhjelp-ci/actions/create-artifact-version@master
You can’t perform that action at this time.
0 commit comments