mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-16 01:45:29 +02:00
chore(deps): bump the github-actions group across 1 directory with 10 updates
Bumps the github-actions group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `4.9.0` | `5.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [oven-sh/setup-bun](https://github.com/oven-sh/setup-bun) | `1` | `2` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml](https://github.com/google/osv-scanner-action) | `3adb4b14a2b0623876d18d863a498b785fb3752d` | `f4cfcc01edc9c8b756a9b873b7a623ca674da51e` | Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) Updates `actions/dependency-review-action` from 4.9.0 to 5.0.0 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/2031cfc080254a8a887f58cffee85186f0e49e48...a1d282b36b6f3519aa1f3fc636f609c47dddb294) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `oven-sh/setup-bun` from 1 to 2 - [Release notes](https://github.com/oven-sh/setup-bun/releases) - [Commits](https://github.com/oven-sh/setup-bun/compare/v1...v2) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) Updates `google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml` from 3adb4b14a2b0623876d18d863a498b785fb3752d to f4cfcc01edc9c8b756a9b873b7a623ca674da51e - [Release notes](https://github.com/google/osv-scanner-action/releases) - [Commits](https://github.com/google/osv-scanner-action/compare/3adb4b14a2b0623876d18d863a498b785fb3752d...f4cfcc01edc9c8b756a9b873b7a623ca674da51e)
This commit is contained in:
@@ -22,7 +22,7 @@ jobs:
|
|||||||
actionlint:
|
actionlint:
|
||||||
runs-on: ubicloud-standard-2
|
runs-on: ubicloud-standard-2
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
# Pull the prebuilt image instead of rhysd/actionlint@v1.7.11 (a Docker
|
# Pull the prebuilt image instead of rhysd/actionlint@v1.7.11 (a Docker
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
# Copy lockfile + package.json into Docker build context
|
# Copy lockfile + package.json into Docker build context
|
||||||
- run: cp package.json bun.lock .github/docker/
|
- run: cp package.json bun.lock .github/docker/
|
||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
- id: meta
|
- id: meta
|
||||||
run: echo "tag=ghcr.io/${{ github.repository }}/ci:${{ hashFiles('.github/docker/Dockerfile.ci', 'bun.lock') }}" >> "$GITHUB_OUTPUT"
|
run: echo "tag=ghcr.io/${{ github.repository }}/ci:${{ hashFiles('.github/docker/Dockerfile.ci', 'bun.lock') }}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- uses: docker/login-action@v3
|
- uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
@@ -39,9 +39,9 @@ jobs:
|
|||||||
|
|
||||||
# Registry cache export needs a docker-container builder — the default
|
# Registry cache export needs a docker-container builder — the default
|
||||||
# `docker` driver hard-errors on cache-to.
|
# `docker` driver hard-errors on cache-to.
|
||||||
- uses: docker/setup-buildx-action@v3
|
- uses: docker/setup-buildx-action@v4
|
||||||
|
|
||||||
- uses: docker/build-push-action@v6
|
- uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .github/docker
|
context: .github/docker
|
||||||
file: .github/docker/Dockerfile.ci
|
file: .github/docker/Dockerfile.ci
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
|
||||||
- uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0
|
- uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
|
||||||
with:
|
with:
|
||||||
fail-on-severity: high
|
fail-on-severity: high
|
||||||
fail-on-scopes: runtime, development
|
fail-on-scopes: runtime, development
|
||||||
|
|||||||
@@ -22,14 +22,14 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
image-tag: ${{ steps.meta.outputs.tag }}
|
image-tag: ${{ steps.meta.outputs.tag }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- id: meta
|
- id: meta
|
||||||
# Keep in sync with evals.yml — key on Dockerfile + lockfile only
|
# Keep in sync with evals.yml — key on Dockerfile + lockfile only
|
||||||
# (package.json's version field would bust the key on every ship).
|
# (package.json's version field would bust the key on every ship).
|
||||||
run: echo "tag=${{ env.IMAGE }}:${{ hashFiles('.github/docker/Dockerfile.ci', 'bun.lock') }}" >> "$GITHUB_OUTPUT"
|
run: echo "tag=${{ env.IMAGE }}:${{ hashFiles('.github/docker/Dockerfile.ci', 'bun.lock') }}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- uses: docker/login-action@v3
|
- uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
@@ -50,10 +50,10 @@ jobs:
|
|||||||
# Registry cache export needs a docker-container builder — the default
|
# Registry cache export needs a docker-container builder — the default
|
||||||
# `docker` driver hard-errors on cache-to.
|
# `docker` driver hard-errors on cache-to.
|
||||||
- if: steps.check.outputs.exists == 'false'
|
- if: steps.check.outputs.exists == 'false'
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v4
|
||||||
|
|
||||||
- if: steps.check.outputs.exists == 'false'
|
- if: steps.check.outputs.exists == 'false'
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .github/docker
|
context: .github/docker
|
||||||
file: .github/docker/Dockerfile.ci
|
file: .github/docker/Dockerfile.ci
|
||||||
@@ -103,7 +103,7 @@ jobs:
|
|||||||
- name: e2e-gemini
|
- name: e2e-gemini
|
||||||
file: test/gemini-e2e.test.ts
|
file: test/gemini-e2e.test.ts
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
@@ -141,7 +141,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload eval results
|
- name: Upload eval results
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: eval-periodic-${{ matrix.suite.name }}
|
name: eval-periodic-${{ matrix.suite.name }}
|
||||||
path: ~/.gstack-dev/evals/*.json
|
path: ~/.gstack-dev/evals/*.json
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
image-tag: ${{ steps.meta.outputs.tag }}
|
image-tag: ${{ steps.meta.outputs.tag }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- id: meta
|
- id: meta
|
||||||
# Key on Dockerfile + lockfile only. package.json is deliberately NOT
|
# Key on Dockerfile + lockfile only. package.json is deliberately NOT
|
||||||
@@ -38,7 +38,7 @@ jobs:
|
|||||||
# overwrites /workspace and node_modules comes from the lockfile.
|
# overwrites /workspace and node_modules comes from the lockfile.
|
||||||
run: echo "tag=${{ env.IMAGE }}:${{ hashFiles('.github/docker/Dockerfile.ci', 'bun.lock') }}" >> "$GITHUB_OUTPUT"
|
run: echo "tag=${{ env.IMAGE }}:${{ hashFiles('.github/docker/Dockerfile.ci', 'bun.lock') }}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- uses: docker/login-action@v3
|
- uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
@@ -63,10 +63,10 @@ jobs:
|
|||||||
# Registry cache export needs a docker-container builder — the default
|
# Registry cache export needs a docker-container builder — the default
|
||||||
# `docker` driver hard-errors on cache-to (first live run of the trio).
|
# `docker` driver hard-errors on cache-to (first live run of the trio).
|
||||||
- if: steps.check.outputs.exists == 'false'
|
- if: steps.check.outputs.exists == 'false'
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v4
|
||||||
|
|
||||||
- if: steps.check.outputs.exists == 'false'
|
- if: steps.check.outputs.exists == 'false'
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .github/docker
|
context: .github/docker
|
||||||
file: .github/docker/Dockerfile.ci
|
file: .github/docker/Dockerfile.ci
|
||||||
@@ -158,7 +158,7 @@ jobs:
|
|||||||
# row keeps --retry 1.
|
# row keeps --retry 1.
|
||||||
retries: 2
|
retries: 2
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
@@ -320,7 +320,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload eval results
|
- name: Upload eval results
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: eval-${{ matrix.suite.name }}
|
name: eval-${{ matrix.suite.name }}
|
||||||
path: ~/.gstack-dev/evals/*.json
|
path: ~/.gstack-dev/evals/*.json
|
||||||
@@ -341,12 +341,12 @@ jobs:
|
|||||||
# early and never hit it, which is why this stayed hidden). See #1802 CI fix.
|
# early and never hit it, which is why this stayed hidden). See #1802 CI fix.
|
||||||
issues: write
|
issues: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Download all eval artifacts
|
- name: Download all eval artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
pattern: eval-*
|
pattern: eval-*
|
||||||
path: /tmp/eval-results
|
path: /tmp/eval-results
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ jobs:
|
|||||||
runs-on: ubicloud-standard-8
|
runs-on: ubicloud-standard-8
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
bun-version: 1.3.13
|
bun-version: 1.3.13
|
||||||
|
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v6
|
||||||
with:
|
with:
|
||||||
path: ~/.bun/install/cache
|
path: ~/.bun/install/cache
|
||||||
key: linux-bun-${{ hashFiles('bun.lock') }}
|
key: linux-bun-${{ hashFiles('bun.lock') }}
|
||||||
@@ -67,7 +67,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
run: bun install --frozen-lockfile
|
||||||
|
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v6
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/ms-playwright
|
path: ~/.cache/ms-playwright
|
||||||
key: linux-playwright-${{ hashFiles('bun.lock') }}
|
key: linux-playwright-${{ hashFiles('bun.lock') }}
|
||||||
@@ -118,7 +118,7 @@ jobs:
|
|||||||
# need a local re-run, which fork contributors can't do on this image.
|
# need a local re-run, which fork contributors can't do on this image.
|
||||||
- name: Upload shard logs on failure
|
- name: Upload shard logs on failure
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: free-test-shard-logs
|
name: free-test-shard-logs
|
||||||
path: /tmp/gstack-free-test-*.log
|
path: /tmp/gstack-free-test-*.log
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ jobs:
|
|||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ jobs:
|
|||||||
actions: read
|
actions: read
|
||||||
contents: read
|
contents: read
|
||||||
security-events: write
|
security-events: write
|
||||||
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@3adb4b14a2b0623876d18d863a498b785fb3752d # v2.3.8
|
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@f4cfcc01edc9c8b756a9b873b7a623ca674da51e # v2.3.8
|
||||||
with:
|
with:
|
||||||
scan-args: |-
|
scan-args: |-
|
||||||
--include-git-root
|
--include-git-root
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Base repo only — trusted infra (the rewrite helper). No PR-head checkout.
|
# Base repo only — trusted infra (the rewrite helper). No PR-head checkout.
|
||||||
- name: Checkout base repo (trusted)
|
- name: Checkout base repo (trusted)
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
runs-on: ubicloud-standard-8
|
runs-on: ubicloud-standard-8
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
|
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
check-freshness:
|
check-freshness:
|
||||||
runs-on: ubicloud-standard-2
|
runs-on: ubicloud-standard-2
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
- run: bun install
|
- run: bun install
|
||||||
# One generation pass for ALL 10 hosts. gen-skill-docs --host all
|
# One generation pass for ALL 10 hosts. gen-skill-docs --host all
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
pull-requests: read
|
pull-requests: read
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout PR head
|
- name: Checkout PR head
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
|||||||
@@ -39,16 +39,16 @@ jobs:
|
|||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- uses: oven-sh/setup-bun@v1
|
- uses: oven-sh/setup-bun@v2
|
||||||
with:
|
with:
|
||||||
bun-version: 1.3.13
|
bun-version: 1.3.13
|
||||||
|
|
||||||
# bun install was 35s of a 55s job, all network. Cache keyed on the
|
# bun install was 35s of a 55s job, all network. Cache keyed on the
|
||||||
# lockfile; bun's install cache lives under ~/.bun/install/cache on
|
# lockfile; bun's install cache lives under ~/.bun/install/cache on
|
||||||
# every platform.
|
# every platform.
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v6
|
||||||
with:
|
with:
|
||||||
path: ~/.bun/install/cache
|
path: ~/.bun/install/cache
|
||||||
key: windows-bun-${{ hashFiles('bun.lock') }}
|
key: windows-bun-${{ hashFiles('bun.lock') }}
|
||||||
@@ -124,7 +124,7 @@ jobs:
|
|||||||
# automatically, so no per-file entry is needed here.)
|
# automatically, so no per-file entry is needed here.)
|
||||||
- name: Upload shard logs on failure
|
- name: Upload shard logs on failure
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: windows-free-test-shard-logs
|
name: windows-free-test-shard-logs
|
||||||
path: ${{ runner.temp }}/gstack-free-test-*.log
|
path: ${{ runner.temp }}/gstack-free-test-*.log
|
||||||
|
|||||||
@@ -35,15 +35,15 @@ jobs:
|
|||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v7
|
||||||
|
|
||||||
- uses: oven-sh/setup-bun@v1
|
- uses: oven-sh/setup-bun@v2
|
||||||
with:
|
with:
|
||||||
bun-version: 1.3.13
|
bun-version: 1.3.13
|
||||||
|
|
||||||
# Same lockfile-keyed install cache as windows-free-tests.yml (install
|
# Same lockfile-keyed install cache as windows-free-tests.yml (install
|
||||||
# was 45s of a 64s job, all network).
|
# was 45s of a 64s job, all network).
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v6
|
||||||
with:
|
with:
|
||||||
path: ~/.bun/install/cache
|
path: ~/.bun/install/cache
|
||||||
key: windows-bun-${{ hashFiles('bun.lock') }}
|
key: windows-bun-${{ hashFiles('bun.lock') }}
|
||||||
|
|||||||
Reference in New Issue
Block a user