diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/markdown-lint.yml | 4 | ||||
-rw-r--r-- | .github/workflows/pr-check_redirects.yml | 6 | ||||
-rw-r--r-- | .github/workflows/pr-review-companion.yml | 4 | ||||
-rw-r--r-- | .github/workflows/pr-test.yml | 10 | ||||
-rw-r--r-- | .github/workflows/sync-translated-content.yml | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index 7a6fde4818..2c6022c677 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Node.js environment - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: "12" diff --git a/.github/workflows/pr-check_redirects.yml b/.github/workflows/pr-check_redirects.yml index 7fbc1a99b6..a46d3c413b 100644 --- a/.github/workflows/pr-check_redirects.yml +++ b/.github/workflows/pr-check_redirects.yml @@ -14,15 +14,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: mdn/content path: mdn/content - name: Setup Node.js environment - uses: actions/setup-node@v2.1.4 + uses: actions/setup-node@v3 with: node-version: "12" diff --git a/.github/workflows/pr-review-companion.yml b/.github/workflows/pr-review-companion.yml index fa92d70475..97bc8ffb9a 100644 --- a/.github/workflows/pr-review-companion.yml +++ b/.github/workflows/pr-review-companion.yml @@ -61,13 +61,13 @@ jobs: run: | 7z x build.zip -obuild -bb1 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: mdn/yari path: yari - name: Install Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v3 with: python-version: "3.8" diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 115403b438..22dbe62b4a 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -16,19 +16,19 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Needed otherswise it will check out a merge commit which means # you can't get a `git diff` for this PR compared to its base. # with: # ref: ${{ github.event.pull_request.head.sha }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: mdn/content path: mdn/content - name: Setup Node.js environment - uses: actions/setup-node@v2.1.4 + uses: actions/setup-node@v3 with: node-version: "12" @@ -67,7 +67,7 @@ jobs: # Now, this gets used by the `git diff ...` inside get-diff-action. git config --global core.quotePath false - - uses: technote-space/get-diff-action@v4.2 + - uses: technote-space/get-diff-action@v6.0.1 id: git_diff_content with: PATTERNS: files/**/*.+(html|md) @@ -168,7 +168,7 @@ jobs: name: build path: ${{ env.BUILD_OUT_ROOT }} - - uses: technote-space/get-diff-action@v4.2 + - uses: technote-space/get-diff-action@v6.0.1 with: PATTERNS: files/**/*.+(png|jpeg|jpg|gif|svg|webp) ABSOLUTE: true diff --git a/.github/workflows/sync-translated-content.yml b/.github/workflows/sync-translated-content.yml index abaf2514aa..ac2c163933 100644 --- a/.github/workflows/sync-translated-content.yml +++ b/.github/workflows/sync-translated-content.yml @@ -16,15 +16,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: mdn/content path: mdn/content - name: Setup Node.js environment - uses: actions/setup-node@v2.1.4 + uses: actions/setup-node@v3 with: node-version: "12" |