Skip to content

Commit 5d06d1b

Browse files
authored
Update workflows (#11)
Signed-off-by: Dan Webb <[email protected]>
1 parent e1dff89 commit 5d06d1b

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/build-container.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Code checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

1515
- name: Login to GitHub Container Registry
16-
uses: docker/login-action@v1
16+
uses: docker/login-action@v2
1717
with:
1818
registry: ghcr.io
1919
username: ${{ github.repository_owner }}
2020
password: ${{ secrets.GITHUB_TOKEN }}
2121

2222
- name: Set up QEMU
23-
uses: docker/setup-qemu-action@v1
23+
uses: docker/setup-qemu-action@v2
2424

2525
- name: Setup buildx
26-
uses: docker/setup-buildx-action@v1
26+
uses: docker/setup-buildx-action@v2
2727
with:
2828
install: true
2929

3030
- name: Build and push
31-
uses: docker/build-push-action@v2
31+
uses: docker/build-push-action@v3
3232
with:
3333
context: .
3434
platforms: linux/amd64,linux/arm64

.github/workflows/publish.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ jobs:
1616
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
1717

1818
- name: Code checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Login to GitHub Container Registry
22-
uses: docker/login-action@v1
22+
uses: docker/login-action@v2
2323
with:
2424
registry: ghcr.io
2525
username: ${{ github.repository_owner }}
2626
password: ${{ secrets.GITHUB_TOKEN }}
2727

2828
- name: Set up QEMU
29-
uses: docker/setup-qemu-action@v1
29+
uses: docker/setup-qemu-action@v2
3030

3131
- name: Setup buildx
32-
uses: docker/setup-buildx-action@v1
32+
uses: docker/setup-buildx-action@v2
3333
with:
3434
install: true
3535

3636
- name: Build and push
37-
uses: docker/build-push-action@v2
37+
uses: docker/build-push-action@v3
3838
with:
3939
context: .
4040
platforms: linux/amd64,linux/arm64

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: 'Jason Field'
44
description: 'Run yamllint on your yaml files with ease'
55
runs:
66
using: 'docker'
7-
image: docker://ghcr.io/actionshub/yamllint:1.0.2
7+
image: docker://ghcr.io/actionshub/yamllint:1.1.0
88
branding:
99
icon: 'edit-3'
1010
color: 'red'

0 commit comments

Comments
 (0)