diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9596adc..2d1cf20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,10 +60,10 @@ jobs: # job can access it # - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -137,7 +137,7 @@ jobs: # : If you want to use the created Docker image as the default image, specify "default". # imageinfo: - - alpine:3.18,alpine:3.18,alpine,default + - alpine:3.19,alpine:3.19,alpine,default - ubuntu:22.04,ubuntu:22.04,ubuntu # @@ -145,10 +145,10 @@ jobs: # steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 # # Login to avoid the Docker Hub rate limit @@ -162,7 +162,7 @@ jobs: # - name: Login to DockerHub if: ${{ github.event_name != 'pull_request' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESSTOKEN }}