Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
&& github.event.pull_request.assignees[0] == null
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
with:
script: |
const pr = context.payload.pull_request;
Expand All @@ -45,7 +45,7 @@ jobs:
if: github.event.action == 'closed' && github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
with:
script: |
const { owner, repo } = context.repo;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automatic-email-notif-on-ddl-change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
sparse-checkout: sql/updates/
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/build-and-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
run: sbt DAO/jooqGenerate

- name: Upload JOOQ generated code
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: jooq-code
path: |
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
extraSbtFiles: '["*.sbt", "project/**.{scala,sbt}", "project/build.properties" ]'

- name: Download JOOQ generated code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: jooq-code
path: common/dao/src/main/scala/org/apache/texera/dao/jooq/generated/
Expand All @@ -349,25 +349,25 @@ jobs:
df -h

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.11.1
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0

- name: Log in to GitHub Container Registry
if: startsWith(needs.set-parameters.outputs.docker_registry, 'ghcr.io/')
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.6.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log in to Docker Hub
if: ${{ !startsWith(needs.set-parameters.outputs.docker_registry, 'ghcr.io/') }}
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.6.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and push AMD64 image
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.18.0
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
with:
context: ${{ matrix.context }}
file: ${{ matrix.dockerfile }}
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
extraSbtFiles: '["*.sbt", "project/**.{scala,sbt}", "project/build.properties" ]'

- name: Download JOOQ generated code
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: jooq-code
path: common/dao/src/main/scala/org/apache/texera/dao/jooq/generated/
Expand All @@ -430,30 +430,30 @@ jobs:

# Set up QEMU for ARM64 emulation
- name: Set up QEMU
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.7.0
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
with:
platforms: linux/arm64

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.11.1
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0

- name: Log in to GitHub Container Registry
if: startsWith(needs.set-parameters.outputs.docker_registry, 'ghcr.io/')
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.6.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log in to Docker Hub
if: ${{ !startsWith(needs.set-parameters.outputs.docker_registry, 'ghcr.io/') }}
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.6.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and push ARM64 image
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.18.0
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
with:
context: ${{ matrix.context }}
file: ${{ matrix.dockerfile }}
Expand Down Expand Up @@ -481,15 +481,15 @@ jobs:
steps:
- name: Log in to GitHub Container Registry
if: startsWith(needs.set-parameters.outputs.docker_registry, 'ghcr.io/')
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.6.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log in to Docker Hub
if: ${{ !startsWith(needs.set-parameters.outputs.docker_registry, 'ghcr.io/') }}
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.6.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.arch }}
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: frontend/.yarn/cache
key: ${{ runner.os }}-${{ matrix.arch }}-${{ matrix.node-version }}-yarn-cache-v4-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
name: Check License Headers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: apache/skywalking-eyes@5c5b974209f0de5d905f37deb69369068ebfc15c # v0.7.0
6 changes: 3 additions & 3 deletions .github/workflows/create-release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Full history for proper tagging

Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
echo "✓ Vote email template generated!"

- name: Upload RC artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rc-artifacts
path: |
Expand All @@ -330,7 +330,7 @@ jobs:

steps:
- name: Download RC artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: rc-artifacts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- name: Remove 'triage' label when issue is assigned
if: github.event.action == 'assigned'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Add 'triage' label when issue is unassigned and has no assignees
if: github.event.action == 'unassigned'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
permissions:
pull-requests: read
steps:
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading