Skip to content

Commit

Permalink
Use the latest checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jan 25, 2024
1 parent a5ad095 commit 5d27e0c
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/actions/argocd-update/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
using: "composite"
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
ssh-key: ${{ inputs.ssh_key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/builder-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
pgrx_version: "0.9.8"
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- "16"
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Run linters
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install minimal nightly with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
Expand All @@ -52,7 +52,7 @@ jobs:
- dind
- large-8x8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -82,9 +82,9 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check out the coredb repo to reuse some actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: tembo-io/coredb
path: ./coredb
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/extensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
directories: ${{ steps.find_directories.outputs.build_matrix }}
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Find commit to compare with
Expand All @@ -37,7 +37,7 @@ jobs:
fi
echo "changed_relative_to_ref=${changed_relative_to_ref}" >> $GITHUB_OUTPUT
- name: Check out the coredb repo to reuse some actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: tembo-io/tembo
path: ./.tembo
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.find_directories.outputs.directories) }}
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4
- name: Install system dependencies
run: |
set -xe
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
PGPASSWORD: "postgres"
POSTGRES_PASSWORD: "password"
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4
- name: Install system dependencies
run: |
set -xe
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set version strings
id: versions
run: |
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
- build-push-image
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check out the repo
uses: ./.github/actions/argocd-update
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set version strings
id: versions
run: |
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg-trunk"
version = "0.12.17"
version = "0.12.18"
edition = "2021"
authors = ["Steven Miller", "Ian Stanton", "Vinícius Miguel"]
description = "A package manager for PostgreSQL extensions"
Expand Down
2 changes: 1 addition & 1 deletion registry/.github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set version strings
id: versions
run: |
Expand Down

0 comments on commit 5d27e0c

Please sign in to comment.