Skip to content

Commit

Permalink
Bump actions that GitHub complains are using Node.js 16
Browse files Browse the repository at this point in the history
  • Loading branch information
gruuya committed Jan 26, 2024
1 parent a285752 commit dc8b93e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup pre-commit
- name: Install pre-commit
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
fi
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: |
rustup toolchain install nightly --profile minimal
rustup default nightly
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Login to DockerHub (Linux only)
if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -117,7 +117,7 @@ jobs:
if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
id: meta
# https://github.com/docker/metadata-action
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
splitgraph/seafowl
Expand All @@ -131,15 +131,15 @@ jobs:
- name: Build and push Docker image (Linux only)
if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Upload binaries as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT }}
path: ${{ env.SOURCE }}
Expand All @@ -160,7 +160,7 @@ jobs:
# Checkout required to access the release-notes.py script
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Generate release notes
run: |
./.github/workflows/release-notes.py --tag ${{ env.RELEASE_VERSION }} --output notes-${{ env.RELEASE_VERSION }}.md
Expand Down

0 comments on commit dc8b93e

Please sign in to comment.