Skip to content

Commit f0f873b

Browse files
Merge pull request #160 from devops-infra/dependency/a-few
⬆️ Bump dependencies
2 parents 98ed61c + 965f072 commit f0f873b

File tree

5 files changed

+21
-54
lines changed

5 files changed

+21
-54
lines changed

.github/workflows/CRON.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
15+
with:
16+
fetch-depth: 0
1517

1618
- name: Build Docker image and push to registry
1719
env:

.github/workflows/PUSH-MASTER.yml

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,12 @@ on:
66
- master
77

88
jobs:
9-
labels:
10-
name: Update repo labels
11-
runs-on: ubuntu-latest
12-
steps:
13-
- name: Checkout repository
14-
uses: actions/checkout@v4
15-
16-
- name: Download labels' config
17-
shell: bash
18-
run: |
19-
mkdir -p .tmp
20-
curl -LsS https://raw.githubusercontent.com/devops-infra/.github/master/.github/labels.yml -o .tmp/labels.yml
21-
22-
- name: Update labels
23-
uses: crazy-max/[email protected]
24-
with:
25-
github-token: ${{ secrets.GITHUB_TOKEN }}
26-
yaml-file: .tmp/labels.yml
27-
289
lint:
2910
name: Run linters
3011
runs-on: ubuntu-latest
3112
steps:
3213
- name: Checkout repository
33-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
3415

3516
- name: Docker Lint
3617
uses: luke142367/[email protected]
@@ -48,7 +29,9 @@ jobs:
4829
runs-on: ubuntu-latest
4930
steps:
5031
- name: Checkout repository
51-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
33+
with:
34+
fetch-depth: 0
5235

5336
- name: Build Docker image and push to registry
5437
env:

.github/workflows/PUSH-OTHER.yml

Lines changed: 11 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,13 @@ on:
77
- release/*
88

99
jobs:
10-
labels:
11-
name: Update repo labels
12-
runs-on: ubuntu-latest
13-
steps:
14-
- name: Checkout repository
15-
uses: actions/checkout@v4
16-
17-
- name: Download labels' config
18-
shell: bash
19-
run: |
20-
mkdir -p .tmp
21-
curl -LsS https://raw.githubusercontent.com/devops-infra/.github/master/.github/labels.yml -o .tmp/labels.yml
22-
23-
- name: Update labels - dry run
24-
uses: crazy-max/[email protected]
25-
with:
26-
github-token: ${{ secrets.GITHUB_TOKEN }}
27-
yaml-file: .tmp/labels.yml
28-
dry-run: true
29-
3010
lint:
3111
name: Run linters
3212
if: "!startsWith(github.ref, 'refs/heads/dependabot')"
3313
runs-on: ubuntu-latest
3414
steps:
3515
- name: Checkout repository
36-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
3717

3818
- name: Docker Lint
3919
uses: luke142367/[email protected]
@@ -50,7 +30,9 @@ jobs:
5030
runs-on: ubuntu-latest
5131
steps:
5232
- name: Checkout repository
53-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
34+
with:
35+
fetch-depth: 0
5436

5537
- name: Build Docker image
5638
env:
@@ -62,7 +44,7 @@ jobs:
6244
runs-on: ubuntu-latest
6345
steps:
6446
- name: Checkout repository
65-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
6648
with:
6749
fetch-depth: 0
6850

@@ -74,7 +56,7 @@ jobs:
7456
7557
- name: Create pull request - bugfix (conditional)
7658
if: startsWith(github.ref, 'refs/heads/bugfix')
77-
uses: devops-infra/[email protected].0
59+
uses: devops-infra/[email protected]
7860
with:
7961
github_token: ${{ secrets.GITHUB_TOKEN }}
8062
assignee: ${{ github.actor }}
@@ -84,7 +66,7 @@ jobs:
8466

8567
- name: Create pull request - dependency (conditional)
8668
if: startsWith(github.ref, 'refs/heads/dependency')
87-
uses: devops-infra/[email protected].0
69+
uses: devops-infra/[email protected]
8870
with:
8971
github_token: ${{ secrets.GITHUB_TOKEN }}
9072
assignee: ${{ github.actor }}
@@ -94,7 +76,7 @@ jobs:
9476

9577
- name: Create pull request - documentation (conditional)
9678
if: startsWith(github.ref, 'refs/heads/documentation')
97-
uses: devops-infra/[email protected].0
79+
uses: devops-infra/[email protected]
9880
with:
9981
github_token: ${{ secrets.GITHUB_TOKEN }}
10082
assignee: ${{ github.actor }}
@@ -104,7 +86,7 @@ jobs:
10486

10587
- name: Create pull request - feature (conditional)
10688
if: startsWith(github.ref, 'refs/heads/feature')
107-
uses: devops-infra/[email protected].0
89+
uses: devops-infra/[email protected]
10890
with:
10991
github_token: ${{ secrets.GITHUB_TOKEN }}
11092
assignee: ${{ github.actor }}
@@ -114,7 +96,7 @@ jobs:
11496

11597
- name: Create pull request - test (conditional)
11698
if: startsWith(github.ref, 'refs/heads/test')
117-
uses: devops-infra/[email protected].0
99+
uses: devops-infra/[email protected]
118100
with:
119101
github_token: ${{ secrets.GITHUB_TOKEN }}
120102
assignee: ${{ github.actor }}
@@ -126,7 +108,7 @@ jobs:
126108

127109
- name: Create pull request - other (conditional)
128110
if: "!startsWith(github.ref, 'refs/heads/bugfix') && !startsWith(github.ref, 'refs/heads/dependabot') && !startsWith(github.ref, 'refs/heads/dependency') && !startsWith(github.ref, 'refs/heads/documentation') && !startsWith(github.ref, 'refs/heads/feature') && !startsWith(github.ref, 'refs/heads/test')"
129-
uses: devops-infra/[email protected].0
111+
uses: devops-infra/[email protected]
130112
with:
131113
github_token: ${{ secrets.GITHUB_TOKEN }}
132114
assignee: ${{ github.actor }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SHELL ["/bin/sh", "-euxo", "pipefail", "-c"]
55
RUN apk update --no-cache ;\
66
apk add --no-cache \
77
bash~=5.2 \
8-
docker=~=28.2 \
8+
docker=~=28.3 \
99
make~=4.4 \
1010
ncurses~=6.5 \
1111
python3~=3.12 \

pip/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
requests==2.32.4
2-
slack_sdk==3.35.0
1+
requests==2.32.5
2+
slack_sdk==3.36.0

0 commit comments

Comments
 (0)