Skip to content

Commit

Permalink
chore(ci): Upgrade Github CI/CD to non-deprecated actions (#933)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-slatto authored Mar 13, 2023
1 parent 6abfbb3 commit d909dfd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-polaris/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The action uses an own Dockerfile on purpose because the root Dockerfile takes way too long to build for an action

FROM alpine:3.10
FROM alpine:3.17

RUN apk add --no-cache \
bash \
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-polaris/get_polaris.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ mkdir polaris
tar -xzf $TARGET_FILE -C polaris
rm $TARGET_FILE
echo "polaris" >> $GITHUB_PATH
echo "::set-output name=version::$INPUT_VERSION"
echo "version=$INPUT_VERSION" >> $GITHUB_OUTPUT
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
- uses: actions/stale@v7
with:
exempt-issue-labels: pinned
stale-pr-label: stale
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build-int:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup polaris
uses: ./.github/actions/setup-polaris
with:
Expand All @@ -18,7 +18,7 @@ jobs:
build-ext:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup polaris
uses: fairwindsops/polaris/.github/actions/setup-polaris@master
with:
Expand Down

0 comments on commit d909dfd

Please sign in to comment.