Skip to content

Commit cd7bc41

Browse files
authored
Merge pull request #6185 from Countly/dependabot/github_actions/actions-64de86c0d2
Bump the actions group with 6 updates
2 parents 8ddb85a + 1020983 commit cd7bc41

6 files changed

Lines changed: 29 additions & 29 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v2
44+
uses: github/codeql-action/init@v3
4545
with:
4646
languages: ${{ matrix.language }}
4747
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -52,7 +52,7 @@ jobs:
5252
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5353
# If this step fails, then you should remove it and run the build manually (see below)
5454
- name: Autobuild
55-
uses: github/codeql-action/autobuild@v2
55+
uses: github/codeql-action/autobuild@v3
5656

5757
# ℹ️ Command-line programs to run using the OS shell.
5858
# 📚 https://git.io/JvXDl
@@ -66,4 +66,4 @@ jobs:
6666
# make release
6767

6868
- name: Perform CodeQL Analysis
69-
uses: github/codeql-action/analyze@v2
69+
uses: github/codeql-action/analyze@v3

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Enable command line
2525
shell: bash
@@ -45,16 +45,16 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Check out the repo
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v4
4949

5050
- name: Log in to Docker Hub
51-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
51+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
5252
with:
5353
username: ${{ secrets.DOCKERHUB_USERNAME }}
5454
password: ${{ secrets.DOCKERHUB_TOKEN }}
5555

5656
- name: Build and push Docker image
57-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
57+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
5858
with:
5959
push: true
6060
file: ./Dockerfile-core

.github/workflows/docker-image.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out the repo
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Set output
1818
id: vars
@@ -26,13 +26,13 @@ jobs:
2626
echo ${{ steps.vars.outputs.tag }}
2727
2828
- name: Log in to Docker Hub
29-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
29+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
3030
with:
3131
username: ${{ secrets.DOCKERHUB_USERNAME }}
3232
password: ${{ secrets.DOCKERHUB_TOKEN }}
3333

3434
- name: Build and push Docker image
35-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
35+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
3636
with:
3737
context: .
3838
push: true
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Check out the repo
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v4
4747

4848
- name: Set output
4949
id: vars
@@ -57,13 +57,13 @@ jobs:
5757
echo ${{ steps.vars.outputs.tag }}
5858
5959
- name: Log in to Docker Hub
60-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
60+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
6161
with:
6262
username: ${{ secrets.DOCKERHUB_USERNAME }}
6363
password: ${{ secrets.DOCKERHUB_TOKEN }}
6464

6565
- name: Build and push Docker image
66-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
66+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
6767
with:
6868
push: true
6969
file: ./Dockerfile-api
@@ -74,7 +74,7 @@ jobs:
7474
runs-on: ubuntu-latest
7575
steps:
7676
- name: Check out the repo
77-
uses: actions/checkout@v2
77+
uses: actions/checkout@v4
7878

7979
- name: Set output
8080
id: vars
@@ -88,13 +88,13 @@ jobs:
8888
echo ${{ steps.vars.outputs.tag }}
8989
9090
- name: Log in to Docker Hub
91-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
91+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
9292
with:
9393
username: ${{ secrets.DOCKERHUB_USERNAME }}
9494
password: ${{ secrets.DOCKERHUB_TOKEN }}
9595

9696
- name: Build and push Docker image
97-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
97+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
9898
with:
9999
push: true
100100
file: ./Dockerfile-frontend
@@ -105,7 +105,7 @@ jobs:
105105
runs-on: ubuntu-latest
106106
steps:
107107
- name: Check out the repo
108-
uses: actions/checkout@v2
108+
uses: actions/checkout@v4
109109

110110
- name: Set output
111111
id: vars
@@ -119,13 +119,13 @@ jobs:
119119
echo ${{ steps.vars.outputs.tag }}
120120
121121
- name: Log in to Docker Hub
122-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
122+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
123123
with:
124124
username: ${{ secrets.DOCKERHUB_USERNAME }}
125125
password: ${{ secrets.DOCKERHUB_TOKEN }}
126126

127127
- name: Build and push Docker image
128-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
128+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
129129
with:
130130
push: true
131131
file: ./Dockerfile-core

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# Steps represent a sequence of tasks that will be executed as part of the job
2727
steps:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Copy code
3232
shell: bash
@@ -96,7 +96,7 @@ jobs:
9696
COUNTLY_CONFIG_API_PREVENT_JOBS: true
9797

9898
steps:
99-
- uses: actions/checkout@v3
99+
- uses: actions/checkout@v4
100100

101101
- name: Copy code
102102
shell: bash
@@ -153,7 +153,7 @@ jobs:
153153
COUNTLY_CONFIG_API_PREVENT_JOBS: true
154154

155155
steps:
156-
- uses: actions/checkout@v3
156+
- uses: actions/checkout@v4
157157

158158
- name: Prepare tests
159159
shell: bash
@@ -205,7 +205,7 @@ jobs:
205205
COUNTLY_CONFIG_API_PREVENT_JOBS: true
206206

207207
steps:
208-
- uses: actions/checkout@v3
208+
- uses: actions/checkout@v4
209209

210210
- name: Copy code
211211
shell: bash
@@ -263,7 +263,7 @@ jobs:
263263
COUNTLY_CONFIG_API_PREVENT_JOBS: true
264264

265265
steps:
266-
- uses: actions/checkout@v2
266+
- uses: actions/checkout@v4
267267

268268
- name: Install Chrome
269269
shell: bash
@@ -346,7 +346,7 @@ jobs:
346346
COUNTLY_CONFIG_API_PREVENT_JOBS: true
347347

348348
steps:
349-
- uses: actions/checkout@v2
349+
- uses: actions/checkout@v4
350350

351351
- name: Install Chrome
352352
shell: bash

.github/workflows/release_notice.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: echo "$GITHUB_CONTEXT"
1515
- name: Send custom JSON data to Slack workflow
1616
id: slack
17-
uses: slackapi/slack-github-action@v1.23.0
17+
uses: slackapi/slack-github-action@v2.0.0
1818
with:
1919
# This data can be any valid JSON from a previous step in the GitHub Action
2020
payload: |
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_RELEASE }}
3030
- name: Send custom JSON data to Discord
31-
uses: sarisia/actions-status-discord@v1.13.0
31+
uses: sarisia/actions-status-discord@v1.15.3
3232
with:
3333
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
3434
nodetail: true

.github/workflows/stable-je-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Deploy server
2525
shell: bash

0 commit comments

Comments
 (0)