File tree Expand file tree Collapse file tree 8 files changed +3309
-4285
lines changed Expand file tree Collapse file tree 8 files changed +3309
-4285
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 4242import { ChevronLeftIcon } from " @heroicons/vue/24/solid" ;
4343import { Ref } from " vue" ;
4444import { TorrentResponse } from " torrust-index-types-lib" ;
45- import { useRoute } from " #app" ;
4645import { notify } from " notiwind-ts" ;
46+ import { useRoute } from " #app" ;
4747import TorrentActionCard from " ~/components/torrent/TorrentActionCard.vue" ;
4848import TorrentDescriptionTab from " ~/components/torrent/TorrentDescriptionTab.vue" ;
4949import TorrentFilesTab from " ~/components/torrent/TorrentFilesTab.vue" ;
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import "../e2e/contexts/user/commands";
22import "../e2e/contexts/torrent/commands" ;
33import "../e2e/contexts/category/commands" ;
44import "../e2e/common/commands" ;
5- import { RegistrationForm } from "../e2e/contexts/user/registration" ;
65import { TestTorrentInfo } from "cypress/e2e/contexts/torrent/test_torrent_info" ;
6+ import { RegistrationForm } from "../e2e/contexts/user/registration" ;
77
88declare global {
99 namespace Cypress {
You can’t perform that action at this time.
0 commit comments