Skip to content

Commit

Permalink
fix: Update GitHub Actions (#17)
Browse files Browse the repository at this point in the history
Update `github_actions.yml` file steps versions.

References: https://outsystemsrd.atlassian.net/browse/RMET-2568
  • Loading branch information
OS-ricardomoreirasilva committed Apr 11, 2024
1 parent 85c6068 commit c3db0e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ jobs:
test:
name: Unit-Tests
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Bundle Install
run: bundle install
- name: Unit tests
Expand All @@ -26,9 +30,9 @@ jobs:
- name: Lint
run: bundle exec fastlane lint
- name: Setup sonarqube
uses: warchant/setup-sonar-scanner@v3
uses: warchant/setup-sonar-scanner@v8
- name: Send to Sonarcloud
run: bundle exec fastlane sonarqube
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_KEY }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_KEY }}
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### 2024-02-01
- Fix: Update `github_actions.yml` file steps versions (https://outsystemsrd.atlassian.net/browse/RMET-2568).

## 1.1.1

### 2023-02-08
Expand Down

0 comments on commit c3db0e0

Please sign in to comment.