Skip to content

Commit b553c84

Browse files
build: Monthly maintenance (Feb 2024) (#111)
Bump GHA actions to their latest possible versions.
1 parent 208621b commit b553c84

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,29 @@ jobs:
1818
runs-on: "ubuntu-latest"
1919

2020
steps:
21-
- uses: "actions/checkout@v3.5.2"
21+
- uses: "actions/checkout@v4.1.1"
2222

2323
- name: "Cache Docker layers"
24-
uses: "actions/cache@v3.3.1"
24+
uses: "actions/cache@v4.0.0"
2525
with:
2626
path: "/tmp/.buildx-cache"
2727
key: "${{ runner.os }}-buildx-${{ github.sha }}"
2828
restore-keys:
2929
${{ runner.os }}-buildx-
3030

3131
- name: "Login to Docker Hub"
32-
uses: "docker/login-action@v2.1.0"
32+
uses: "docker/login-action@v3.0.0"
3333
with:
3434
username: "${{ secrets.DOCKER_HUB_USERNAME }}"
3535
password: "${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}"
3636

3737
- id: "buildx"
3838
name: "Setup Docker Buildx"
39-
uses: "docker/setup-buildx-action@v2.5.0"
39+
uses: "docker/setup-buildx-action@v3.0.0"
4040

4141
- id: "docker_build"
4242
name: "Build Docker image"
43-
uses: "docker/build-push-action@v4.0.0"
43+
uses: "docker/build-push-action@v5.1.0"
4444
with:
4545
builder: "${{ steps.buildx.outputs.name }}"
4646
context: "./"
@@ -61,25 +61,25 @@ jobs:
6161
runs-on: "ubuntu-latest"
6262

6363
steps:
64-
- uses: "actions/checkout@v3.5.2"
64+
- uses: "actions/checkout@v4.1.1"
6565

6666
- name: "Cache Docker layers"
67-
uses: "actions/cache@v3.3.1"
67+
uses: "actions/cache@v4.0.0"
6868
with:
6969
path: "/tmp/.buildx-cache"
7070
key: "${{ runner.os }}-buildx-${{ github.sha }}"
7171
restore-keys:
7272
${{ runner.os }}-buildx-
7373

7474
- name: "Login to Docker Hub"
75-
uses: "docker/login-action@v2.1.0"
75+
uses: "docker/login-action@v3.0.0"
7676
with:
7777
username: "${{ secrets.DOCKER_HUB_USERNAME }}"
7878
password: "${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}"
7979

8080
- id: "buildx"
8181
name: "Setup Docker Buildx"
82-
uses: "docker/setup-buildx-action@v2.5.0"
82+
uses: "docker/setup-buildx-action@v3.0.0"
8383

8484
- id: "deploy_info"
8585
name: "Setup deploy info"
@@ -98,7 +98,7 @@ jobs:
9898
9999
- id: "docker_build"
100100
name: "Build & push Docker image"
101-
uses: "docker/build-push-action@v4.0.0"
101+
uses: "docker/build-push-action@v5.1.0"
102102
with:
103103
builder: "${{ steps.buildx.outputs.name }}"
104104
context: "./"

.github/workflows/release_tag.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
BADABUMP_VERSION: "22.1.0"
13-
PYTHON_VERSION: "3.11.1"
13+
PYTHON_VERSION: "3.12.1"
1414
PYTHONUNBUFFERED: "1"
1515

1616
jobs:
@@ -22,18 +22,18 @@ jobs:
2222

2323
steps:
2424
- id: "token"
25-
uses: "tibdex/github-app-token@v1.8.0"
25+
uses: "tibdex/github-app-token@v2.1.0"
2626
with:
2727
app_id: "${{ secrets.BADABUMP_APP_ID }}"
2828
private_key: "${{ secrets.BADABUMP_APP_PRIVATE_KEY }}"
2929

30-
- uses: "actions/checkout@v3.5.2"
30+
- uses: "actions/checkout@v4.1.1"
3131
with:
3232
ref: "main"
3333
token: "${{ steps.token.outputs.token }}"
3434

3535
- name: "Install Python"
36-
uses: "actions/setup-python@v4.6.0"
36+
uses: "actions/setup-python@v5.0.0"
3737
with:
3838
python-version: "${{ env.PYTHON_VERSION }}"
3939

0 commit comments

Comments
 (0)