diff --git a/.github/workflows/build-and-check-windows-latest.yml b/.github/workflows/build-and-check-windows-latest.yml index 0db8d1f..29a9b3b 100644 --- a/.github/workflows/build-and-check-windows-latest.yml +++ b/.github/workflows/build-and-check-windows-latest.yml @@ -54,7 +54,7 @@ jobs: make install - name: Clone pgSphere - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build pgSphere run: | @@ -85,7 +85,7 @@ jobs: run: cat regression.diffs - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: success() || failure() with: name: ${{ env.GITHUB_REF_SLUG_URL }}-pg${{ matrix.pg_version }}-use-healpix-${{ matrix.use_healpix }}-${{ github.run_id }} diff --git a/.github/workflows/build-and-check.yml b/.github/workflows/build-and-check.yml index bfc758b..d8b91de 100644 --- a/.github/workflows/build-and-check.yml +++ b/.github/workflows/build-and-check.yml @@ -36,7 +36,7 @@ jobs: run: sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -p -v ${{ matrix.pg_version }} -i - name: Clone pgSphere - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set MAKE_CMD variable run: echo "MAKE_CMD=make --keep-going -j$(nproc) -l$(nproc) -O" >> $GITHUB_ENV @@ -72,10 +72,10 @@ jobs: run: ${MAKE_CMD} -C doc - name: Inject slug/short variables - uses: rlespinasse/github-slug-action@v4 + uses: rlespinasse/github-slug-action@v5 - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: success() || failure() with: name: ${{ env.GITHUB_REF_SLUG_URL }}-pg${{ matrix.pg_version }}-use-healpix-${{ matrix.use_healpix }}-${{ github.run_id }} diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index c4a9466..8de6c6b 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,19 +33,19 @@ jobs: fop - name: Clone pgSphere - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build docs run: make -C doc - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v6 - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: 'doc/html' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5