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

Fix the action warnings #95

Merged
merged 2 commits into from
Mar 15, 2024
Merged
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
13 changes: 7 additions & 6 deletions .github/workflows/scheduled-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ jobs:
steps:

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
role-duration-seconds: 21600 # 6 hour session length

- name: Clone repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4

- name: Count jobs
id: count_jobs
Expand Down Expand Up @@ -96,7 +97,7 @@ jobs:
echo "failed=$(jq '.jobSummaryList | length' failed.json)" >>$GITHUB_OUTPUT

- name: Clone osbuild-composer repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4
with:
repository: osbuild/osbuild-composer
path: osbuild-composer
Expand All @@ -113,7 +114,7 @@ jobs:
run: .github/scripts/snapshot_update_pr.sh

- name: Clone osbuild repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4
with:
repository: osbuild/osbuild
path: osbuild
Expand All @@ -130,7 +131,7 @@ jobs:
run: .github/scripts/snapshot_update_pr.sh

- name: Clone cloud image val repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4
with:
repository: osbuild/cloud-image-val
path: cloud-image-val
Expand All @@ -147,7 +148,7 @@ jobs:
run: .github/scripts/snapshot_update_pr.sh

- name: Clone images repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v4
with:
repository: osbuild/images
path: images
Expand Down
Loading