Skip to content

Commit 5e72534

Browse files
committed
chore: update dependencies
1 parent 4ad84d3 commit 5e72534

File tree

8 files changed

+3309
-4285
lines changed

8 files changed

+3309
-4285
lines changed

.github/workflows/publish_docker_image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
environment: dockerhub-torrust
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Docker meta
3737
id: meta
38-
uses: docker/metadata-action@v4
38+
uses: docker/metadata-action@v5
3939
with:
4040
images: |
4141
# For example: torrust/index-frontend
@@ -47,16 +47,16 @@ jobs:
4747
type=semver,pattern={{major}}.{{minor}}
4848
4949
- name: Login to Docker Hub
50-
uses: docker/login-action@v2
50+
uses: docker/login-action@v3
5151
with:
5252
username: ${{ secrets.DOCKER_HUB_USERNAME }}
5353
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
5454

5555
- name: Set up Docker Buildx
56-
uses: docker/setup-buildx-action@v2
56+
uses: docker/setup-buildx-action@v3
5757

5858
- name: Build and push
59-
uses: docker/build-push-action@v4
59+
uses: docker/build-push-action@v5
6060
with:
6161
context: .
6262
file: ./Dockerfile

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Install dependencies
1515
run: npm install

.github/workflows/test_docker_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
test:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- name: Set up Docker Buildx
14-
uses: docker/setup-buildx-action@v2
14+
uses: docker/setup-buildx-action@v3
1515

1616
- name: Build docker image
17-
uses: docker/build-push-action@v4
17+
uses: docker/build-push-action@v5
1818
with:
1919
context: .
2020
file: ./Dockerfile

components/torrent/TorrentDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
import { ChevronLeftIcon } from "@heroicons/vue/24/solid";
4343
import { Ref } from "vue";
4444
import { TorrentResponse } from "torrust-index-types-lib";
45-
import { useRoute } from "#app";
4645
import { notify } from "notiwind-ts";
46+
import { useRoute } from "#app";
4747
import TorrentActionCard from "~/components/torrent/TorrentActionCard.vue";
4848
import TorrentDescriptionTab from "~/components/torrent/TorrentDescriptionTab.vue";
4949
import TorrentFilesTab from "~/components/torrent/TorrentFilesTab.vue";

cypress/support/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import "../e2e/contexts/user/commands";
22
import "../e2e/contexts/torrent/commands";
33
import "../e2e/contexts/category/commands";
44
import "../e2e/common/commands";
5-
import { RegistrationForm } from "../e2e/contexts/user/registration";
65
import { TestTorrentInfo } from "cypress/e2e/contexts/torrent/test_torrent_info";
6+
import { RegistrationForm } from "../e2e/contexts/user/registration";
77

88
declare global {
99
namespace Cypress {

0 commit comments

Comments
 (0)