diff --git a/.github/workflows/_integration_tests.yml b/.github/workflows/_integration_tests.yml index 6bf7d256..cffd0edb 100644 --- a/.github/workflows/_integration_tests.yml +++ b/.github/workflows/_integration_tests.yml @@ -6,12 +6,12 @@ jobs: strategy: matrix: os: - - ${{ vars.UBUNTU_VERSION }} + - ubuntu-22.04 node-version: [18.x, 20.x, 22.x] es-version: [7.6.1] jdk-version: [oraclejdk11] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: diff --git a/.github/workflows/_unit_tests.yml b/.github/workflows/_unit_tests.yml index d1aa5787..b371970f 100644 --- a/.github/workflows/_unit_tests.yml +++ b/.github/workflows/_unit_tests.yml @@ -6,10 +6,10 @@ jobs: strategy: matrix: os: - - ${{ vars.UBUNTU_VERSION }} + - ubuntu-22.04 node-version: [18.x, 20.x, 22.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index dd9c983e..a8df7609 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -11,9 +11,9 @@ jobs: npm-publish: needs: [unit-tests, integration-tests] if: github.ref == 'refs/heads/master' && github.event_name == 'push' - runs-on: ${{ vars.UBUNTU_VERSION }} + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Node.js uses: actions/setup-node@v4 with: @@ -29,9 +29,9 @@ jobs: # note: github actions won't run a job if you don't call one of the status check functions, so `always()` is called since it evalutes to `true` if: ${{ always() && needs.unit-tests.result == 'success' && (needs.npm-publish.result == 'success' || needs.npm-publish.result == 'skipped') }} needs: [unit-tests, integration-tests, npm-publish] - runs-on: ${{ vars.UBUNTU_VERSION }} + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build Docker images env: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}