Skip to content

Commit b92df1e

Browse files
committed
update github action versions
1 parent dd26a43 commit b92df1e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/docker-publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
-
1616
name: Docker meta
1717
id: meta
18-
uses: docker/metadata-action@v3
18+
uses: docker/metadata-action@v4
1919
with:
2020
images: |
2121
ghcr.io/enchant97/note-mark
@@ -26,14 +26,14 @@ jobs:
2626
type=semver,pattern={{version}}
2727
-
2828
name: Set up QEMU
29-
uses: docker/setup-qemu-action@v1
29+
uses: docker/setup-qemu-action@v2
3030
-
3131
name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v1
32+
uses: docker/setup-buildx-action@v2
3333
-
3434
name: Login to GitHub Container Registry
3535
if: github.event_name != 'pull_request'
36-
uses: docker/login-action@v1
36+
uses: docker/login-action@v2
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.repository_owner }}

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Set up Python 3.x
18-
uses: actions/setup-python@v2
17+
- name: Set up Python 3.10
18+
uses: actions/setup-python@v4
1919
with:
20-
python-version: 3.x
20+
python-version: "3.10"
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)