Skip to content

Commit

Permalink
Update GitHub Action Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 22, 2023
1 parent ed639f4 commit 6656bde
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/action-version-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.7.4
uses: saadmk11/github-actions-version-updater@v0.8.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}
14 changes: 7 additions & 7 deletions .github/workflows/publish_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Backend
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1

- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3.0.0

- name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v3.3.2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Docker Hub login
uses: docker/login-action@v2
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: GitHub container Registry login
uses: docker/login-action@v2
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -45,7 +45,7 @@ jobs:

- name: Build and Push Arm
id: docker_build_arm
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5.0.0
with:
context: ./
file: ./DockerfileM1
Expand All @@ -63,7 +63,7 @@ jobs:

- name: Build and Push
id: docker_build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5.0.0
with:
context: ./
file: ./Dockerfile
Expand Down

0 comments on commit 6656bde

Please sign in to comment.