File tree 2 files changed +8
-18
lines changed
2 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ jobs:
14
14
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
19
19
- name : Set up QEMU
20
- uses : docker/setup-qemu-action@v2
20
+ uses : docker/setup-qemu-action@v3
21
21
22
22
- name : Set up Docker Buildx
23
- uses : docker/setup-buildx-action@v2
23
+ uses : docker/setup-buildx-action@v3
24
24
25
25
- name : Login to DockerHub
26
- uses : docker/login-action@v2
26
+ uses : docker/login-action@v3
27
27
with :
28
28
username : ${{ secrets.DOCKERHUB_USERNAME }}
29
29
password : ${{ secrets.DOCKERHUB_TOKEN }}
@@ -37,13 +37,13 @@ jobs:
37
37
38
38
- name : Check if release version has been bumped
39
39
id : release_file_changed
40
- uses : tj-actions/changed-files@v37
40
+ uses : tj-actions/changed-files@v44
41
41
with :
42
42
files : |
43
43
release
44
44
45
45
- name : Build & push container image
46
- uses : docker/build-push-action@v3
46
+ uses : docker/build-push-action@v6
47
47
with :
48
48
context : .
49
49
platforms : linux/amd64,linux/arm64
Original file line number Diff line number Diff line change 1
1
name : " Code Scanning - Action"
2
2
3
3
on :
4
- push :
5
- branches : [master]
6
4
pull_request :
5
+ push :
7
6
branches : [master]
8
7
schedule :
9
- # ┌───────────── minute (0 - 59)
10
- # │ ┌───────────── hour (0 - 23)
11
- # │ │ ┌───────────── day of the month (1 - 31)
12
- # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
13
- # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
14
- # │ │ │ │ │
15
- # │ │ │ │ │
16
- # │ │ │ │ │
17
- # * * * * *
18
8
- cron : ' 30 1 * * 0'
19
9
20
10
jobs :
32
22
33
23
steps :
34
24
- name : Checkout repository
35
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
36
26
37
27
# Initializes the CodeQL tools for scanning.
38
28
- name : Initialize CodeQL
You can’t perform that action at this time.
0 commit comments