Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
upgrade github actions to their latest available versions (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst authored Aug 29, 2023
1 parent 58d0911 commit 40c848c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install buildx
uses: docker/setup-buildx-action@v2
Expand All @@ -26,7 +26,7 @@ jobs:
run: sudo apt-get update -y; sudo apt-get install --no-install-recommends -y python3 python3-pip; pip install lastversion

- name: Login to DockerHub
uses: docker/login-action@v1.12.0
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PASSWORD}}
Expand All @@ -36,7 +36,7 @@ jobs:
run: echo "::set-output name=version::$(lastversion https://github.com/kevinpapst/kimai2)"

- name: Build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: .
build-args: |
Expand All @@ -59,7 +59,7 @@ jobs:
steps:

- name: Login to DockerHub
uses: docker/login-action@v1.12.0
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PASSWORD}}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install buildx
uses: docker/setup-buildx-action@v2
Expand All @@ -26,7 +26,7 @@ jobs:
run: sudo apt-get update -y; sudo apt-get install --no-install-recommends -y python3 python3-pip; pip install lastversion

- name: Login to DockerHub
uses: docker/login-action@v1.12.0
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PASSWORD}}
Expand All @@ -36,7 +36,7 @@ jobs:
run: echo "::set-output name=version::$(lastversion https://github.com/kevinpapst/kimai2)"

- name: Build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: .
build-args: |
Expand All @@ -59,7 +59,7 @@ jobs:
steps:

- name: Login to DockerHub
uses: docker/login-action@v1.12.0
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PASSWORD}}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/kimai-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install buildx
uses: docker/setup-buildx-action@v2
Expand All @@ -25,7 +25,7 @@ jobs:
run: sudo apt-get update -y; sudo apt-get install --no-install-recommends -y python3 python3-pip; pip install lastversion

- name: Login to DockerHub
uses: docker/login-action@v1.12.0
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PASSWORD}}
Expand All @@ -35,7 +35,7 @@ jobs:
run: echo "::set-output name=version::$(lastversion https://github.com/kevinpapst/kimai2)"

- name: Build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: .
build-args: |
Expand All @@ -58,7 +58,7 @@ jobs:
steps:

- name: Login to DockerHub
uses: docker/login-action@v1.12.0
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_PASSWORD}}
Expand Down

0 comments on commit 40c848c

Please sign in to comment.