Skip to content

Commit dc8b93e

Browse files
committed
Bump actions that GitHub complains are using Node.js 16
1 parent a285752 commit dc8b93e

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
2424
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
# Setup pre-commit
2929
- name: Install pre-commit

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fi
5454
5555
- name: Checkout the repository
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
- run: |
5858
rustup toolchain install nightly --profile minimal
5959
rustup default nightly
@@ -102,7 +102,7 @@ jobs:
102102
103103
- name: Login to DockerHub (Linux only)
104104
if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
105-
uses: docker/login-action@v2
105+
uses: docker/login-action@v3
106106
with:
107107
username: ${{ secrets.DOCKERHUB_USERNAME }}
108108
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -117,7 +117,7 @@ jobs:
117117
if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
118118
id: meta
119119
# https://github.com/docker/metadata-action
120-
uses: docker/metadata-action@v4
120+
uses: docker/metadata-action@v5
121121
with:
122122
images: |
123123
splitgraph/seafowl
@@ -131,15 +131,15 @@ jobs:
131131
132132
- name: Build and push Docker image (Linux only)
133133
if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
134-
uses: docker/build-push-action@v4
134+
uses: docker/build-push-action@v5
135135
with:
136136
context: .
137137
push: true
138138
tags: ${{ steps.meta.outputs.tags }}
139139
labels: ${{ steps.meta.outputs.labels }}
140140

141141
- name: Upload binaries as artifacts
142-
uses: actions/upload-artifact@v3
142+
uses: actions/upload-artifact@v4
143143
with:
144144
name: ${{ env.ARTIFACT }}
145145
path: ${{ env.SOURCE }}
@@ -160,7 +160,7 @@ jobs:
160160
161161
# Checkout required to access the release-notes.py script
162162
- name: Checkout the repository
163-
uses: actions/checkout@v3
163+
uses: actions/checkout@v4
164164
- name: Generate release notes
165165
run: |
166166
./.github/workflows/release-notes.py --tag ${{ env.RELEASE_VERSION }} --output notes-${{ env.RELEASE_VERSION }}.md

0 commit comments

Comments
 (0)