diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 635c9c4..ffefab4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,9 +27,9 @@ jobs: - name: Turn off auto-crlf run: git config --global core.autocrlf false - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.nodejs }} - name: Install dependencies diff --git a/.github/workflows/reusable-verify.yml b/.github/workflows/reusable-verify.yml index 36f209c..38ca0f6 100644 --- a/.github/workflows/reusable-verify.yml +++ b/.github/workflows/reusable-verify.yml @@ -1,5 +1,6 @@ -# reusable workflow: Verify container # https://docs.github.com/en/actions/using-workflows/reusing-workflows +name: Reusable workflow (verify) + on: workflow_call: inputs: @@ -38,7 +39,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key uses: ./. with: @@ -56,7 +57,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key uses: ./. with: @@ -75,7 +76,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key uses: ./. with: @@ -93,7 +94,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key uses: ./. with: @@ -112,7 +113,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key uses: ./. with: @@ -130,7 +131,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key uses: ./. with: @@ -149,7 +150,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key (dummy) uses: ./. with: @@ -173,7 +174,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key (replace) uses: ./. with: @@ -192,7 +193,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key (dummy) uses: ./. with: @@ -216,7 +217,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key (replace) uses: ./. with: @@ -235,7 +236,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key (dummy) uses: ./. with: @@ -260,7 +261,7 @@ jobs: run: ${{ inputs.package_installation_command }} if: ${{ inputs.package_installation_command != '' }} - name: Checkout source codes - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install SSH key (replace) uses: ./. with: diff --git a/.github/workflows/verify-on-container-alpine.yml b/.github/workflows/verify-on-container-alpine.yml index 12262da..0321029 100644 --- a/.github/workflows/verify-on-container-alpine.yml +++ b/.github/workflows/verify-on-container-alpine.yml @@ -1,5 +1,4 @@ # https://help.github.com/en/articles/workflow-syntax-for-github-actions - name: Docker container (Alpine Linux) on: diff --git a/.github/workflows/verify-on-container-centos.yml b/.github/workflows/verify-on-container-centos.yml index e7cf195..9d1df6a 100644 --- a/.github/workflows/verify-on-container-centos.yml +++ b/.github/workflows/verify-on-container-centos.yml @@ -1,5 +1,4 @@ # https://help.github.com/en/articles/workflow-syntax-for-github-actions - name: Docker container (CentOS) on: diff --git a/.github/workflows/verify-on-container-ubuntu.yml b/.github/workflows/verify-on-container-ubuntu.yml index 21c5897..43e0598 100644 --- a/.github/workflows/verify-on-container-ubuntu.yml +++ b/.github/workflows/verify-on-container-ubuntu.yml @@ -1,5 +1,4 @@ # https://help.github.com/en/articles/workflow-syntax-for-github-actions - name: Docker container (Ubuntu) on: diff --git a/.github/workflows/verify-on-macos.yml b/.github/workflows/verify-on-macos.yml index 586bd69..63a3150 100644 --- a/.github/workflows/verify-on-macos.yml +++ b/.github/workflows/verify-on-macos.yml @@ -1,5 +1,4 @@ # https://help.github.com/en/articles/workflow-syntax-for-github-actions - name: macOS on: diff --git a/.github/workflows/verify-on-ubuntu.yml b/.github/workflows/verify-on-ubuntu.yml index 70106ec..850eca3 100644 --- a/.github/workflows/verify-on-ubuntu.yml +++ b/.github/workflows/verify-on-ubuntu.yml @@ -1,5 +1,4 @@ # https://help.github.com/en/articles/workflow-syntax-for-github-actions - name: Ubuntu on: diff --git a/.github/workflows/verify-on-windows.yml b/.github/workflows/verify-on-windows.yml index 5723141..0501a40 100644 --- a/.github/workflows/verify-on-windows.yml +++ b/.github/workflows/verify-on-windows.yml @@ -1,5 +1,4 @@ # https://help.github.com/en/articles/workflow-syntax-for-github-actions - name: Windows on: