Skip to content

Commit e87b092

Browse files
committed
CI: try and use latest actions to get rid of deprecation warnings
1 parent 2da9ba4 commit e87b092

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Set up Python 3.12
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python
2020
with:
2121
python-version: "3.12"
2222

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
uses: actions/checkout@v4
3434
- name: Set up QEMU
3535
if: matrix.platform != ''
36-
uses: docker/setup-qemu-action@v2
36+
uses: docker/setup-qemu-action
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v2
38+
uses: docker/setup-buildx-action
3939
- name: Login to Docker Hub
4040
if: matrix.push
41-
uses: docker/login-action@v2
41+
uses: docker/login-action
4242
with:
4343
username: ${{ secrets.DOCKERHUB_USERNAME }}
4444
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -65,7 +65,7 @@ jobs:
6565
- ${{ vars.DOCKERHUB_ORGANIZATION }}/wopiserver:latest
6666
steps:
6767
- name: Login to Docker Hub
68-
uses: docker/login-action@v2
68+
uses: docker/login-action
6969
with:
7070
username: ${{ secrets.DOCKERHUB_USERNAME }}
7171
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -75,4 +75,4 @@ jobs:
7575
--amend ${{ vars.DOCKERHUB_ORGANIZATION }}/wopiserver:${{ github.ref_name }}-amd64 \
7676
--amend ${{ vars.DOCKERHUB_ORGANIZATION }}/wopiserver:${{ github.ref_name }}-arm64
7777
- name: Push manifest
78-
run: docker manifest push ${{ matrix.manifest }}
78+
run: docker manifest push ${{ matrix.manifest }}

0 commit comments

Comments
 (0)