Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GitHub Action packages #55

Merged
merged 1 commit into from
Feb 15, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/build_aws_scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
PKR_VAR_instance_type: ${{ matrix.arch == 'x86_64' && 't3.micro' || 't4g.micro' }}

- name: Upload manifest
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: manifest_aws_${{ matrix.arch }}.json
name: manifest_aws_${{ matrix.arch }}.json
Expand Down Expand Up @@ -109,12 +109,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download x64 manifest
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: manifest_aws_x86_64.json

- name: Download arm64 manifest
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: manifest_aws_arm64.json

Expand All @@ -130,7 +130,7 @@ jobs:
# ]

- name: Print in a markdown format
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const fs = require("fs");
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_gcp_azure_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
gcloud compute images add-iam-policy-binding ${PKR_VAR_image_base_name}-asia-${PKR_VAR_suffix} --member='allAuthenticatedUsers' --role='roles/compute.imageUser'
- name: Upload manifest
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: manifest_${{ matrix.cloud }}.json
name: manifest_${{ matrix.cloud }}.json
Expand All @@ -116,7 +116,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Google Cloud manifest
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: manifest_gcp.json

Expand All @@ -143,7 +143,7 @@ jobs:
# ]

- name: Print in a markdown format
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
RUN_NUMBER: ${{ github.run_number }}
with:
Expand Down