diff options
-rw-r--r-- | .github/actions/reusable-prepare-peertube-build/action.yml | 4 | ||||
-rw-r--r-- | .github/workflows/benchmark.yml | 2 | ||||
-rw-r--r-- | .github/workflows/codeql.yml | 2 | ||||
-rw-r--r-- | .github/workflows/docker.yml | 4 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 2 | ||||
-rw-r--r-- | .github/workflows/stats.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/.github/actions/reusable-prepare-peertube-build/action.yml b/.github/actions/reusable-prepare-peertube-build/action.yml index 41ebf71c5..e02c0b333 100644 --- a/.github/actions/reusable-prepare-peertube-build/action.yml +++ b/.github/actions/reusable-prepare-peertube-build/action.yml | |||
@@ -12,12 +12,12 @@ runs: | |||
12 | 12 | ||
13 | steps: | 13 | steps: |
14 | - name: Use Node.js | 14 | - name: Use Node.js |
15 | uses: actions/setup-node@v1 | 15 | uses: actions/setup-node@v3 |
16 | with: | 16 | with: |
17 | node-version: ${{ inputs.node-version }} | 17 | node-version: ${{ inputs.node-version }} |
18 | 18 | ||
19 | - name: Cache Node.js modules | 19 | - name: Cache Node.js modules |
20 | uses: actions/cache@v2 | 20 | uses: actions/cache@v3 |
21 | with: | 21 | with: |
22 | path: | | 22 | path: | |
23 | **/node_modules | 23 | **/node_modules |
diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index eaad5db64..2566f5ba8 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml | |||
@@ -31,7 +31,7 @@ jobs: | |||
31 | PGHOST: localhost | 31 | PGHOST: localhost |
32 | 32 | ||
33 | steps: | 33 | steps: |
34 | - uses: actions/checkout@v2 | 34 | - uses: actions/checkout@v3 |
35 | 35 | ||
36 | - uses: './.github/actions/reusable-prepare-peertube-build' | 36 | - uses: './.github/actions/reusable-prepare-peertube-build' |
37 | with: | 37 | with: |
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8764cdd0e..14c6001ab 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml | |||
@@ -35,7 +35,7 @@ jobs: | |||
35 | 35 | ||
36 | steps: | 36 | steps: |
37 | - name: Checkout repository | 37 | - name: Checkout repository |
38 | uses: actions/checkout@v2 | 38 | uses: actions/checkout@v3 |
39 | 39 | ||
40 | # Initializes the CodeQL tools for scanning. | 40 | # Initializes the CodeQL tools for scanning. |
41 | - name: Initialize CodeQL | 41 | - name: Initialize CodeQL |
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 68a0f173e..9eae5d0fe 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml | |||
@@ -15,7 +15,7 @@ jobs: | |||
15 | matrix: ${{ steps.set-matrix.outputs.matrix }} | 15 | matrix: ${{ steps.set-matrix.outputs.matrix }} |
16 | steps: | 16 | steps: |
17 | - name: Checkout | 17 | - name: Checkout |
18 | uses: actions/checkout@v2 | 18 | uses: actions/checkout@v3 |
19 | with: | 19 | with: |
20 | ref: master | 20 | ref: master |
21 | - name: Set matrix for build | 21 | - name: Set matrix for build |
@@ -58,7 +58,7 @@ jobs: | |||
58 | 58 | ||
59 | - | 59 | - |
60 | name: Checkout develop | 60 | name: Checkout develop |
61 | uses: actions/checkout@v2 | 61 | uses: actions/checkout@v3 |
62 | with: | 62 | with: |
63 | ref: ${{ matrix.ref }} | 63 | ref: ${{ matrix.ref }} |
64 | - | 64 | - |
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 23898b7ef..0bb685ff1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml | |||
@@ -12,7 +12,7 @@ jobs: | |||
12 | steps: | 12 | steps: |
13 | - | 13 | - |
14 | name: Checkout develop | 14 | name: Checkout develop |
15 | uses: actions/checkout@v2 | 15 | uses: actions/checkout@v3 |
16 | with: | 16 | with: |
17 | ref: develop | 17 | ref: develop |
18 | 18 | ||
diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml index c87e6fb77..89793ca86 100644 --- a/.github/workflows/stats.yml +++ b/.github/workflows/stats.yml | |||
@@ -18,7 +18,7 @@ jobs: | |||
18 | CI_BRANCH_BASE: develop | 18 | CI_BRANCH_BASE: develop |
19 | 19 | ||
20 | steps: | 20 | steps: |
21 | - uses: actions/checkout@v2 | 21 | - uses: actions/checkout@v3 |
22 | 22 | ||
23 | - uses: './.github/actions/reusable-prepare-peertube-build' | 23 | - uses: './.github/actions/reusable-prepare-peertube-build' |
24 | with: | 24 | with: |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0b9778b0..9e3ab9c5d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -48,7 +48,7 @@ jobs: | |||
48 | ENABLE_OBJECT_STORAGE_TESTS: true | 48 | ENABLE_OBJECT_STORAGE_TESTS: true |
49 | 49 | ||
50 | steps: | 50 | steps: |
51 | - uses: actions/checkout@v2 | 51 | - uses: actions/checkout@v3 |
52 | 52 | ||
53 | - uses: './.github/actions/reusable-prepare-peertube-build' | 53 | - uses: './.github/actions/reusable-prepare-peertube-build' |
54 | with: | 54 | with: |
@@ -57,7 +57,7 @@ jobs: | |||
57 | - uses: './.github/actions/reusable-prepare-peertube-run' | 57 | - uses: './.github/actions/reusable-prepare-peertube-run' |
58 | 58 | ||
59 | - name: Cache fixtures | 59 | - name: Cache fixtures |
60 | uses: actions/cache@v2 | 60 | uses: actions/cache@v3 |
61 | with: | 61 | with: |
62 | path: | | 62 | path: | |
63 | fixtures | 63 | fixtures |