Skip to content

Commit

Permalink
chore(deps): update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alma-renovate-bot[bot] committed Sep 23, 2024
1 parent c9b37b1 commit ed054b7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Fetch the latest commit, only
fetch-depth: 1
- name: Use Node.js 16
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand All @@ -25,12 +25,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Fetch the latest commit, only
fetch-depth: 1
- name: Use Node.js 16
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand All @@ -40,12 +40,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Fetch the latest commit, only
fetch-depth: 1
- name: Use Node.js 16
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand All @@ -55,7 +55,7 @@ jobs:
sonarcloud-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand All @@ -71,7 +71,7 @@ jobs:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
with:
name: ${{ env.BUILD_VERSION }}
tag: ${{ env.BUILD_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
pull-requests: write # add labels in PR
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v3
- uses: TimonVS/pr-labeler-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Publish package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16
- run: npm ci
Expand All @@ -29,7 +29,7 @@ jobs:
env:
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish build assets to release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: |
./dist/widgets.umd.js
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Fetch the latest commit, only
fetch-depth: 1
Expand All @@ -74,7 +74,7 @@ jobs:
echo ::set-output name=RELEASE_NOTES::"$RELEASE_NOTES"
- name: Use Slack markdown
uses: LoveToKnow/slackify-markdown-action@v1.0.0
uses: LoveToKnow/slackify-markdown-action@v1.1.1
id: slack-markdown-release-notes
with:
text: |
Expand All @@ -85,7 +85,7 @@ jobs:
${{ steps.release-notes.outputs.RELEASE_NOTES }}
- name: Send changelog to Slack
uses: slackapi/slack-github-action@v1.16.0
uses: slackapi/slack-github-action@v1.27.0
with:
# Channel `#alma_changelog`
channel-id: 'CR9C57YM6'
Expand Down

0 comments on commit ed054b7

Please sign in to comment.