diff --git a/.github/actions/translation-tracker/README.md b/.github/actions/translation-tracker/README.md index 53805e6499..cd6ed1ad84 100644 --- a/.github/actions/translation-tracker/README.md +++ b/.github/actions/translation-tracker/README.md @@ -57,12 +57,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 2 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '18' diff --git a/.github/workflows/beta_deploy.yml b/.github/workflows/beta_deploy.yml index fc0d09c840..0f473269ef 100644 --- a/.github/workflows/beta_deploy.yml +++ b/.github/workflows/beta_deploy.yml @@ -20,12 +20,12 @@ jobs: steps: - name: Checkout your repository using git - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install, build, and upload your site output env: NODE_OPTIONS: "--max_old_space_size=4096" - uses: withastro/action@v2 + uses: withastro/action@v5 - name: Deploy to Netlify uses: nwtgck/actions-netlify@v3.0 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 06bd5f7896..dea5588fee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,11 +19,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout your repository using git - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install, build, and upload your site output env: NODE_OPTIONS: "--max_old_space_size=4096" - uses: withastro/action@v2 + uses: withastro/action@v5 deploy: needs: build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 74a564effe..353c356319 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout your repository using git - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Test @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout your repository using git - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Lint @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout your repository using git - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Typecheck @@ -39,7 +39,7 @@ jobs: needs: test steps: - name: Checkout your repository using git - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Build diff --git a/.github/workflows/translation-sync.yml b/.github/workflows/translation-sync.yml index 9753acc37b..1c24ca4503 100644 --- a/.github/workflows/translation-sync.yml +++ b/.github/workflows/translation-sync.yml @@ -14,12 +14,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 2 # Fetch previous commit to compare changes - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '18'