Skip to content

Commit

Permalink
Updated deprecated versions for actions for upload, download, checkou…
Browse files Browse the repository at this point in the history
…t, etc
  • Loading branch information
dmurphy18 committed Sep 23, 2024
1 parent 681fd9a commit ffaa18e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
environment: release

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get Salt Project GitHub Actions Bot Environment
run: |
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
outputs:
release-version: ${{ steps.update-repo.outputs.release-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: develop
repository: ${{ github.repository }}
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
repository: ${{ github.repository }}

- name: Upload Release Details
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-details
path: |
Expand All @@ -158,7 +158,7 @@ jobs:
permissions:
contents: write # To be able to publish the release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: stable
repository: ${{ github.repository }}
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
git config --global commit.gpgsign true
- name: Download Release Details
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-details

Expand Down Expand Up @@ -254,13 +254,13 @@ jobs:
permissions:
contents: write # To be able to publish the release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: stable
repository: ${{ github.repository }}
ssh-key: ${{ secrets.SALT_BOOTSTRAP_RELEASE_KEY }}
- name: Download Release Details
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-details

Expand All @@ -287,7 +287,7 @@ jobs:
LICENSE
- name: Delete Release Details Artifact
uses: geekyeggo/delete-artifact@v2
uses: geekyeggo/delete-artifact@v5
with:
name: release-details
failOnError: false
Expand All @@ -303,7 +303,7 @@ jobs:
environment: release

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: stable
repository: ${{ github.repository }}
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
pull-requests: write # For action peter-evans/create-pull-request

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: stable
repository: ${{ github.repository }}
Expand All @@ -378,7 +378,7 @@ jobs:
echo "SH=$(sha256sum bootstrap-salt.sh | awk '{ print $1 }')" >> "$GITHUB_ENV"
echo "BS_VERSION=$(sh bootstrap-salt.sh -v | awk '{ print $4 }')" >> "$GITHUB_ENV"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: develop
repository: ${{ github.repository }}
Expand Down

0 comments on commit ffaa18e

Please sign in to comment.