Skip to content

Commit

Permalink
Bump GitHub Action packages
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdeme committed Feb 15, 2024
1 parent 3d05b9a commit e8049bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit e8049bd

Please sign in to comment.