Skip to content

Commit

Permalink
Update missing actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Smjert committed Jul 10, 2024
1 parent e314597 commit e7d9330
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cleanup_ec2_runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.EC2_GITHUB_RUNNER_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.EC2_GITHUB_RUNNER_AWS_SECRET_ACCESS_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cve_scan_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Clone the osquery repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install python pre-requisites
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/self_hosted_runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ jobs:

steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.EC2_GITHUB_RUNNER_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.EC2_GITHUB_RUNNER_AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.EC2_GITHUB_RUNNER_AWS_REGION }}

- name: Start aarch64 EC2 runner for a Release build
id: start_ec2_runner-Release
uses: osquery/[email protected].3
uses: osquery/[email protected].6
with:
mode: start
github-token: ${{ secrets.EC2_GITHUB_RUNNER_GH_PERSONAL_ACCESS_TOKEN }}
Expand All @@ -128,7 +128,7 @@ jobs:

- name: Start aarch64 EC2 runner for a RelWithDebInfo build
id: start_ec2_runner-RelWithDebInfo
uses: osquery/[email protected].3
uses: osquery/[email protected].6
with:
mode: start
github-token: ${{ secrets.EC2_GITHUB_RUNNER_GH_PERSONAL_ACCESS_TOKEN }}
Expand Down Expand Up @@ -159,15 +159,15 @@ jobs:
aws-region: ${{ secrets.EC2_GITHUB_RUNNER_AWS_REGION }}

- name: Stop aarch64 EC2 runner for Release mode build
uses: osquery/[email protected].3
uses: osquery/[email protected].6
with:
mode: stop
github-token: ${{ secrets.EC2_GITHUB_RUNNER_GH_PERSONAL_ACCESS_TOKEN }}
label: ${{ needs.start_ec2_runners.outputs.label-Release }}
ec2-instance-id: ${{ needs.start_ec2_runners.outputs.ec2-instance-id-Release }}

- name: Stop aarch64 EC2 runner for RelWithDebInfo mode build
uses: osquery/[email protected].3
uses: osquery/[email protected].6
with:
mode: stop
github-token: ${{ secrets.EC2_GITHUB_RUNNER_GH_PERSONAL_ACCESS_TOKEN }}
Expand Down

0 comments on commit e7d9330

Please sign in to comment.