Skip to content

Commit cf536e5

Browse files
authored
Merge pull request #625 from librespeed:update-build-pipeline
update github-actions
2 parents 3034bf2 + 0d03e44 commit cf536e5

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
# Set up BuildKit Docker container builder to be able to build
3939
# multi-platform images and export cache
4040
# https://github.com/docker/setup-buildx-action
4141
- name: Set up Docker Buildx
42-
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
42+
uses: docker/setup-buildx-action@v3
4343

4444
# Login against a Docker registry except on PR
4545
# https://github.com/docker/login-action
4646
- name: Log into registry ${{ env.REGISTRY }}
4747
if: github.event_name != 'pull_request'
48-
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
48+
uses: docker/login-action@v3
4949
with:
5050
registry: ${{ env.REGISTRY }}
5151
username: ${{ github.actor }}
@@ -55,7 +55,7 @@ jobs:
5555
# https://github.com/docker/metadata-action
5656
- name: Extract Docker metadata
5757
id: meta
58-
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
58+
uses: docker/metadata-action@v5
5959
with:
6060
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6161
tags: |
@@ -70,7 +70,7 @@ jobs:
7070
# https://github.com/docker/build-push-action
7171
- name: Build and push Docker image
7272
id: build-and-push
73-
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
73+
uses: docker/build-push-action@v5
7474
with:
7575
context: .
7676
platforms: linux/amd64,linux/arm64

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"github.vscode-github-actions"
4+
]
5+
}

0 commit comments

Comments
 (0)