Skip to content

Commit

Permalink
chore(deps): update actions/checkout action in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
t3hmrman committed Oct 2, 2024
1 parent 4343fb4 commit 0eaf528
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-gnu/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ runs:
using: "composite"
steps:
# Checkout the repo
- uses: actions/checkout@v3
- uses: actions/checkout@v4

#########
# Cache #
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-rpm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ outputs: {}
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: Swatinem/rust-cache@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
pg_version: "17.0"
os_version: alpine3.20.3
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: taiki-e/install-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prep-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout the full repository history
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
pg:
version: "17.0"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build the RPM (reuse workflow)
uses: ./.github/workflows/build-rpm
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
pg:
version: "17.0"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build the package (reuse workflow)
uses: ./.github/workflows/build-and-test-gnu
Expand All @@ -89,7 +89,7 @@ jobs:
- build-zip-gnu
steps:
# Checkout the repository
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Download all artifacts
- uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
pgrx:
version: pg17
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build & test the project
uses: ./.github/workflows/build-and-test-gnu

0 comments on commit 0eaf528

Please sign in to comment.