Skip to content

Commit

Permalink
Merge pull request #14 from zoenglinghou/gh-actions-update-1733064055
Browse files Browse the repository at this point in the history
Update GitHub Action Versions
  • Loading branch information
zoenglinghou authored Dec 9, 2024
2 parents 4d0bc58 + ea5744c commit 77a5806
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.6.1 # v3.0.0
uses: docker/setup-buildx-action@v3.7.1 # v3.0.0

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
Expand All @@ -54,15 +54,15 @@ jobs:
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5.5.1 # v5.0.0
uses: docker/metadata-action@v5.6.1 # v5.0.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v6.9.0 # v5.0.0
uses: docker/build-push-action@v6.10.0 # v5.0.0
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_TOKEN }}
Expand Down

0 comments on commit 77a5806

Please sign in to comment.