Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ghactions-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:

- name: Check out the repo
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.2.2
with:
token: ${{ secrets.WORKFLOW_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.2.2

- name: "Log in to Docker Hub"
uses: docker/login-action@v2.2.0
uses: docker/login-action@v3.4.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: "Extract metadata (tags, labels) for Docker"
id: meta
uses: docker/metadata-action@v4.6.0
uses: docker/metadata-action@v5.7.0
with:
images: jmlemetayer/abba
flavor: |
latest=true

- name: "Build and push Docker image"
uses: docker/build-push-action@v4.2.1
uses: docker/build-push-action@v6.18.0
with:
context: docker
push: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.2.2

- name: "Setup python"
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v5.6.0
with:
python-version: 3.8

- name: "Install Python dependencies"
uses: py-actions/py-dependency-install@v4.0.0
uses: py-actions/py-dependency-install@v4.1.0
with:
path: "tools/dependencies/requirements.txt"

Expand All @@ -30,7 +30,7 @@ jobs:
./tools/dependencies/update_dependencies

- name: "Create Pull Request"
uses: peter-evans/create-pull-request@v5.0.2
uses: peter-evans/create-pull-request@v7.0.8
with:
title: "Update dependencies"
body: "ABBA dependency updates"
Expand Down