Skip to content

Commit

Permalink
"Node.js 12 actions are deprecated" warning fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
homper authored and akorotkov committed Oct 30, 2022
1 parent ab24969 commit 5106b5d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
COMPILER: ${{ matrix.compiler }}
steps:
- name: Checkout extension code into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: orioledb
- name: Get the required tag name
shell: bash
run: |
echo "PGTAG=$(grep '^${{ matrix.pg_version }}: ' orioledb/.pgtags | cut -d' ' -f2-)" >> $GITHUB_ENV
- name: Checkout PostgreSQL code into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: orioledb/postgres
ref: ${{ env.PGTAG }}
Expand Down Expand Up @@ -62,15 +62,15 @@ jobs:
COMPILER: ${{ matrix.compiler }}
steps:
- name: Checkout extension code into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: orioledb
- name: Get the required tag name
shell: bash
run: |
echo "PGTAG=$(grep '^${{ matrix.pg_version }}: ' orioledb/.pgtags | cut -d' ' -f2-)" >> $GITHUB_ENV
- name: Checkout PostgreSQL code into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: orioledb/postgres
ref: ${{ env.PGTAG }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get the required tag name
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ jobs:
openssl-devel systemd-devel llvm-toolset-7-clang \
llvm5.0-devel gcc gcc-c++ libzstd-devel lz4-devel
- name: Checkout PGRPMs into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: orioledb/pgrpms
ref: orioledb
- name: Checkout extension code into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: orioledb
- name: Get the required tag name
shell: bash
run: |
echo "PGTAG=$(grep '^${{ github.event.inputs.version }}: ' orioledb/.pgtags | cut -d' ' -f2-)" >> $GITHUB_ENV
- name: Checkout PostgreSQL code into workspace directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: orioledb/postgres
ref: ${{ env.PGTAG }}
Expand Down

0 comments on commit 5106b5d

Please sign in to comment.