mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Replace actions/checkout@v3 with actions/checkout@v4 for all the github actions.
This commit is contained in:
parent
6d8c4bdb82
commit
8545d846c0
2
.github/workflows/check-container-build.yml
vendored
2
.github/workflows/check-container-build.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build the container
|
- name: Build the container
|
||||||
run: docker build .
|
run: docker build .
|
||||||
|
2
.github/workflows/check-doc-builds.yml
vendored
2
.github/workflows/check-doc-builds.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install platform dependencies
|
- name: Install platform dependencies
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/check-python-build.yml
vendored
2
.github/workflows/check-python-build.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install platform dependencies
|
- name: Install platform dependencies
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/check-python-style.yml
vendored
2
.github/workflows/check-python-style.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/check-tarball-build.yml
vendored
2
.github/workflows/check-tarball-build.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install platform dependencies
|
- name: Install platform dependencies
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/check-translations.yml
vendored
2
.github/workflows/check-translations.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install platform dependencies
|
- name: Install platform dependencies
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/run-feature-tests-epas.yml
vendored
2
.github/workflows/run-feature-tests-epas.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup the EDB APT repo on Linux
|
- name: Setup the EDB APT repo on Linux
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/run-feature-tests-pg.yml
vendored
2
.github/workflows/run-feature-tests-pg.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup the PGDG APT repo
|
- name: Setup the PGDG APT repo
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/run-javascript-tests.yml
vendored
2
.github/workflows/run-javascript-tests.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: '18.x'
|
node-version: '18.x'
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Upgrade yarn
|
- name: Upgrade yarn
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/run-python-tests-epas.yml
vendored
2
.github/workflows/run-python-tests-epas.yml
vendored
@ -82,7 +82,7 @@ jobs:
|
|||||||
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.pgver == 16 }}
|
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.pgver == 16 }}
|
||||||
run: |
|
run: |
|
||||||
sudo sed -i "s/shared_preload_libraries = '/shared_preload_libraries = '\$libdir\/edb_job_scheduler,/g" /etc/edb-as/${{ matrix.pgver }}/main/postgresql.conf
|
sudo sed -i "s/shared_preload_libraries = '/shared_preload_libraries = '\$libdir\/edb_job_scheduler,/g" /etc/edb-as/${{ matrix.pgver }}/main/postgresql.conf
|
||||||
sudo echo "edb_job_scheduler.database_list = 'test_dbms_job_scheduler'" >> /etc/edb-as/${{ matrix.pgver }}/main/postgresql.conf
|
sudo su -c "echo \"edb_job_scheduler.database_list = 'test_dbms_job_scheduler'\" >> /etc/edb-as/${{ matrix.pgver }}/main/postgresql.conf"
|
||||||
|
|
||||||
- name: Start PostgreSQL on Linux
|
- name: Start PostgreSQL on Linux
|
||||||
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
||||||
|
2
.github/workflows/run-python-tests-pg.yml
vendored
2
.github/workflows/run-python-tests-pg.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup the PGDG APT repo on Linux
|
- name: Setup the PGDG APT repo on Linux
|
||||||
if: ${{ matrix.os == 'ubuntu-latest' }}
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
||||||
|
2
.github/workflows/sonarqube-scan.yml
vendored
2
.github/workflows/sonarqube-scan.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user