Skip to content

Commit efe3160

Browse files
ghactions: github action autoupdate
1 parent bf50103 commit efe3160

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ghactions-autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111

1212
- name: Check out the repo
13-
uses: actions/checkout@v4.0.0
13+
uses: actions/checkout@v4.2.2
1414
with:
1515
token: ${{ secrets.WORKFLOW_TOKEN }}
1616

.github/workflows/publish-docker-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: "Check out the repo"
11-
uses: actions/checkout@v4.0.0
11+
uses: actions/checkout@v4.2.2
1212

1313
- name: "Log in to Docker Hub"
14-
uses: docker/login-action@v2.2.0
14+
uses: docker/login-action@v3.3.0
1515
with:
1616
username: ${{ secrets.DOCKERHUB_USERNAME }}
1717
password: ${{ secrets.DOCKERHUB_TOKEN }}
1818

1919
- name: "Extract metadata (tags, labels) for Docker"
2020
id: meta
21-
uses: docker/metadata-action@v4.6.0
21+
uses: docker/metadata-action@v5.6.1
2222
with:
2323
images: jmlemetayer/abba
2424
flavor: |
2525
latest=true
2626
2727
- name: "Build and push Docker image"
28-
uses: docker/build-push-action@v4.2.1
28+
uses: docker/build-push-action@v6.13.0
2929
with:
3030
context: docker
3131
push: true

.github/workflows/update-dependencies.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: "Check out the repo"
14-
uses: actions/checkout@v4.0.0
14+
uses: actions/checkout@v4.2.2
1515

1616
- name: "Setup python"
17-
uses: actions/setup-python@v4.7.0
17+
uses: actions/setup-python@v5.3.0
1818
with:
1919
python-version: 3.8
2020

2121
- name: "Install Python dependencies"
22-
uses: py-actions/py-dependency-install@v4.0.0
22+
uses: py-actions/py-dependency-install@v4.1.0
2323
with:
2424
path: "tools/dependencies/requirements.txt"
2525

@@ -30,7 +30,7 @@ jobs:
3030
./tools/dependencies/update_dependencies
3131
3232
- name: "Create Pull Request"
33-
uses: peter-evans/create-pull-request@v5.0.2
33+
uses: peter-evans/create-pull-request@v7.0.6
3434
with:
3535
title: "Update dependencies"
3636
body: "ABBA dependency updates"

0 commit comments

Comments
 (0)