diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e3928ba..093d261 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 22 - run: npm ci - uses: actions/cache@v3 id: load-cache @@ -30,7 +30,7 @@ jobs: - ${{ github.event_name == 'pull_request' && github.triggering_actor == 'omacranger' }} is_master_push: - ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - version: ["5.15.4", "6.1.1", "6.2.0", "6.4.0", "6.7.2"] + version: ["5.15.4", "6.1.1", "6.2.0", "6.4.0", "6.7.2", "7.0.0"] package: ["free", "pro"] exclude: - is_master_push: false @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 22 - uses: actions/cache@v3 id: load-cache with: @@ -69,7 +69,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 22 - uses: actions/cache@v3 id: load-cache with: @@ -87,7 +87,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 22 - uses: actions/cache@v3 id: load-cache with: diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index c2aaea4..e369959 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -4,7 +4,7 @@ on: version: required: false type: string - default: "6.4.0" + default: "7.0.0" package: required: false type: string @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 22 - uses: actions/cache@v3 id: load-cache with: @@ -31,7 +31,7 @@ jobs: if [ "${{ inputs.package }}" != "free" ]; then \ printf "@fortawesome:registry=https://npm.fontawesome.com/\n//npm.fontawesome.com/:_authToken=${{ secrets.FA_NPM_KEY }}" > .npmrc; \ fi - if [ "${{ inputs.version }}" != "6.7.2" ] || [ "${{ inputs.package }}" != "free" ]; then \ + if [ "${{ inputs.version }}" != "7.0.0" ] || [ "${{ inputs.package }}" != "free" ]; then \ npm i --no-save @fortawesome/fontawesome-${{ inputs.package }}@${{ inputs.version }}; \ fi if [ "${{ inputs.package }}" != "free" ]; then \