Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update github actions #176

Merged
merged 16 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
ffd0f92
Bump actions/upload-artifact from 3 to 4
dependabot[bot] Mar 14, 2024
b8e412d
Bump jacobtomlinson/gha-find-replace from 2 to 3
dependabot[bot] Mar 14, 2024
9b81f42
Merge pull request #171 from splitio/dependabot/github_actions/develo…
emmaz90 Mar 14, 2024
77eb1e0
Merge branch 'development' into dependabot/github_actions/development…
emmaz90 Mar 14, 2024
050265c
Bump actions/setup-node from 3 to 4
dependabot[bot] Mar 14, 2024
06350d8
Merge pull request #172 from splitio/dependabot/github_actions/develo…
emmaz90 Mar 14, 2024
0798126
Merge branch 'development' into dependabot/github_actions/development…
emmaz90 Mar 14, 2024
91265bf
Bump peter-evans/create-pull-request from 5 to 6
dependabot[bot] Mar 14, 2024
b515c0e
Merge pull request #173 from splitio/dependabot/github_actions/develo…
emmaz90 Mar 14, 2024
7bd3c99
Merge branch 'development' into dependabot/github_actions/development…
emmaz90 Mar 14, 2024
3e566ed
Bump docker/login-action from 2 to 3
dependabot[bot] Mar 14, 2024
3015941
Merge pull request #174 from splitio/dependabot/github_actions/develo…
emmaz90 Mar 14, 2024
589200e
Merge branch 'development' into dependabot/github_actions/development…
emmaz90 Mar 14, 2024
216d777
Merge pull request #175 from splitio/dependabot/github_actions/develo…
emmaz90 Mar 14, 2024
e972e13
Merge branch 'master' of https://github.com/splitio/split-evaluator i…
ZamoraEmmanuel Mar 14, 2024
303e95f
Merge pull request #177 from splitio/pull-main
emmaz90 Mar 14, 2024
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: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to Artifactory
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: splitio-docker-dev.jfrog.io
username: ${{ secrets.ARTIFACTORY_DOCKER_USER }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.18.0

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Save vulnerability report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vulnerability_report
path: ${{ github.event.repository.name }}.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: splitio-docker-dev.jfrog.io
username: ${{ secrets.ARTIFACTORY_DOCKER_USER }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-license-year.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: "echo PREVIOUS=$(($CURRENT-1)) >> $GITHUB_ENV"

- name: Update LICENSE
uses: jacobtomlinson/gha-find-replace@v2
uses: jacobtomlinson/gha-find-replace@v3
with:
find: ${{ env.PREVIOUS }}
replace: ${{ env.CURRENT }}
Expand All @@ -38,7 +38,7 @@ jobs:
git commit -m "Updated License Year" -a

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: Update License Year
Expand Down