Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
pull-requests: write
if: github.actor == 'renovate[bot]' || github.event_name == 'workflow_dispatch'
steps:
# Pinned to v4: hmarr/auto-approve-action has no Node 24 release yet.
# Accept the Node 20 deprecation warning until upstream publishes a new version.
- uses: hmarr/auto-approve-action@v4
with:
review-message: "Auto approved automated PR"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Deno
uses: denoland/setup-deno@v2
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Deno
uses: denoland/setup-deno@v2
Expand All @@ -56,7 +56,7 @@ jobs:
run: deno task build:linux:x64

- name: Upload binary artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: stackctl-linux-x64
path: dist/stackctl-linux-x64
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
os: macos-latest

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

- uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- name: Cache Deno dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/deno
Expand All @@ -50,7 +50,7 @@ jobs:
working-directory: dist
run: shasum -a 256 "stackctl-${{ github.ref_name }}-${{ matrix.target }}.tar.gz" > "stackctl-${{ github.ref_name }}-${{ matrix.target }}.tar.gz.sha256"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: ${{ matrix.target }}
path: |
Expand All @@ -64,9 +64,9 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v7
with:
pattern: "*"
path: dist/
Expand All @@ -77,7 +77,7 @@ jobs:
run: shasum -a 256 stackctl-*.tar.gz > checksums.txt

- name: Create Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: |
dist/stackctl-*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
- uses: actions/stale@v10
with:
stale-issue-label: ":sleeping: stale"
stale-issue-message: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: main

Expand Down