Skip to content

Commit

Permalink
ghactions: github action autoupdate
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 7, 2024
1 parent bf50103 commit b6022da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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.3.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.5.1
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.9.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.3.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.5
with:
title: "Update dependencies"
body: "ABBA dependency updates"
Expand Down

0 comments on commit b6022da

Please sign in to comment.