Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JustArchiNET/ASF-WebConfigGenerator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a4531614c59da6fa112810dfea23a74b110a975a
Choose a base ref
..
head repository: JustArchiNET/ASF-WebConfigGenerator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1db3c5966ec53ab615b962dc1b211dff22da2d80
Choose a head ref
Showing with 94 additions and 113 deletions.
  1. +5 −5 .github/workflows/ci.yml
  2. +3 −3 .github/workflows/translations.yml
  3. +81 −100 package-lock.json
  4. +5 −5 package.json
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -16,12 +16,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0
with:
token: ${{ secrets.ARCHIBOT_GITHUB_TOKEN }}

- name: Setup Node.js with npm
uses: actions/setup-node@v2.5.1
uses: actions/setup-node@v3.0.0
with:
check-latest: true
node-version: ${{ env.NODE_JS_VERSION }}
@@ -41,7 +41,7 @@ jobs:
- name: Upload latest strings for translation on Crowdin
continue-on-error: true
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && startsWith(matrix.os, 'ubuntu-') }}
uses: crowdin/github-action@1.4.6
uses: crowdin/github-action@1.4.7
with:
crowdin_branch_name: main
config: '.github/crowdin.yml'
@@ -50,14 +50,14 @@ jobs:

- name: Upload ASF-WebConfigGenerator
continue-on-error: true
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3.0.0
with:
name: ${{ matrix.os }}_ASF-WebConfigGenerator
path: docs

- name: Import GPG key
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && startsWith(matrix.os, 'ubuntu-') }}
uses: crazy-max/ghaction-import-gpg@v4.1.0
uses: crazy-max/ghaction-import-gpg@v4.2.0
with:
gpg_private_key: ${{ secrets.ARCHIBOT_GPG_PRIVATE_KEY }}
git_user_signingkey: true
6 changes: 3 additions & 3 deletions .github/workflows/translations.yml
Original file line number Diff line number Diff line change
@@ -10,12 +10,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0
with:
token: ${{ secrets.ARCHIBOT_GITHUB_TOKEN }}

- name: Download latest translations from Crowdin
uses: crowdin/github-action@1.4.6
uses: crowdin/github-action@1.4.7
with:
upload_sources: false
download_translations: true
@@ -27,7 +27,7 @@ jobs:
token: ${{ secrets.ASF_CROWDIN_API_TOKEN }}

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v4.1.0
uses: crazy-max/ghaction-import-gpg@v4.2.0
with:
gpg_private_key: ${{ secrets.ARCHIBOT_GPG_PRIVATE_KEY }}
git_user_signingkey: true
Loading